You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/service-bus-messaging/service-bus-performance-improvements.md
-4Lines changed: 0 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -342,7 +342,6 @@ Goal: Maximize the throughput of a single queue. The number of senders and recei
342
342
* To increase the overall send rate into the queue, use multiple message factories to create senders. For each sender, use asynchronous operations or multiple threads.
343
343
* To increase the overall receive rate from the queue, use multiple message factories to create receivers.
344
344
* Use asynchronous operations to take advantage of client-side batching.
345
-
* Set the batching interval to 50 ms to reduce the number of Service Bus client protocol transmissions. If multiple senders are used, increase the batching interval to 100 ms.
346
345
* Leave batched store access enabled. This access increases the overall rate at which messages can be written into the queue.
347
346
* Set the prefetch count to 20 times the maximum processing rates of all receivers of a factory. This count reduces the number of Service Bus client protocol transmissions.
348
347
@@ -371,7 +370,6 @@ To maximize throughput, follow these steps:
371
370
372
371
* If each sender is in a different process, use only a single factory per process.
373
372
* Use asynchronous operations to take advantage of client-side batching.
374
-
* Use the default batching interval of 20 ms to reduce the number of Service Bus client protocol transmissions.
375
373
* Leave batched store access enabled. This access increases the overall rate at which messages can be written into the queue or topic.
376
374
* Set the prefetch count to 20 times the maximum processing rates of all receivers of a factory. This count reduces the number of Service Bus client protocol transmissions.
377
375
@@ -397,7 +395,6 @@ To maximize throughput, follow these guidelines:
397
395
* To increase the overall send rate into the topic, use multiple message factories to create senders. For each sender, use asynchronous operations or multiple threads.
398
396
* To increase the overall receive rate from a subscription, use multiple message factories to create receivers. For each receiver, use asynchronous operations or multiple threads.
399
397
* Use asynchronous operations to take advantage of client-side batching.
400
-
* Use the default batching interval of 20 ms to reduce the number of Service Bus client protocol transmissions.
401
398
* Leave batched store access enabled. This access increases the overall rate at which messages can be written into the topic.
402
399
* Set the prefetch count to 20 times the maximum processing rates of all receivers of a factory. This count reduces the number of Service Bus client protocol transmissions.
403
400
@@ -410,7 +407,6 @@ Topics with a large number of subscriptions typically expose a low overall throu
410
407
To maximize throughput, try the following steps:
411
408
412
409
* Use asynchronous operations to take advantage of client-side batching.
413
-
* Use the default batching interval of 20 ms to reduce the number of Service Bus client protocol transmissions.
414
410
* Leave batched store access enabled. This access increases the overall rate at which messages can be written into the topic.
415
411
* Set the prefetch count to 20 times the expected receive rate in seconds. This count reduces the number of Service Bus client protocol transmissions.
0 commit comments