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
Be careful as implementing the fair dispatching introduce a latency that will hurt performance (see [this blogpost](http://www.rabbitmq.com/blog/2012/05/11/some-queuing-theory-throughput-latency-and-bandwidth/)). But implemeting it allow you to scale horizontally dynamically as the queue is increasing.
299
-
You should evaluate, as the blogpost reccommand, the right value of prefetch_size accordingly with the time taken to process each message and your network performance.
299
+
You should evaluate, as the blogpost recommends, the right value of prefetch_size accordingly with the time taken to process each message and your network performance.
300
300
301
301
With RabbitMqBundle, you can configure that qos_options per consumer like that:
302
302
@@ -559,7 +559,7 @@ and multi consumer configurations before it creates your arbitrary bindings. How
559
559
### Dynamic Consumers ###
560
560
561
561
Sometimes you have to change the consumer's configuration on the fly.
562
-
Dynamic consumers allow you to define the consumers queue options programatically, based on the context.
562
+
Dynamic consumers allow you to define the consumers queue options programmatically, based on the context.
563
563
564
564
e.g. In a scenario when the defined consumer must be responsible for a dynamic number of topics and you do not want (or can't) change it's configuration every time.
0 commit comments