Skip to content

Commit 625b879

Browse files
Remove batching interval references
1 parent ab595d2 commit 625b879

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

articles/service-bus-messaging/service-bus-performance-improvements.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,6 @@ Goal: Maximize the throughput of a single queue. The number of senders and recei
342342
* 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.
343343
* To increase the overall receive rate from the queue, use multiple message factories to create receivers.
344344
* 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.
346345
* Leave batched store access enabled. This access increases the overall rate at which messages can be written into the queue.
347346
* 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.
348347

@@ -371,7 +370,6 @@ To maximize throughput, follow these steps:
371370

372371
* If each sender is in a different process, use only a single factory per process.
373372
* 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.
375373
* Leave batched store access enabled. This access increases the overall rate at which messages can be written into the queue or topic.
376374
* 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.
377375

@@ -397,7 +395,6 @@ To maximize throughput, follow these guidelines:
397395
* 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.
398396
* 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.
399397
* 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.
401398
* Leave batched store access enabled. This access increases the overall rate at which messages can be written into the topic.
402399
* 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.
403400

@@ -410,7 +407,6 @@ Topics with a large number of subscriptions typically expose a low overall throu
410407
To maximize throughput, try the following steps:
411408

412409
* 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.
414410
* Leave batched store access enabled. This access increases the overall rate at which messages can be written into the topic.
415411
* Set the prefetch count to 20 times the expected receive rate in seconds. This count reduces the number of Service Bus client protocol transmissions.
416412

0 commit comments

Comments
 (0)