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
If single consumer consumes from multiple queue it creates new channel and qos works only for single channel. We have multiple queues where load might be different at the specific point in time. If we set qos per channel we might get OOM so we must lower the value to the worst case (when each queue is fully occupied with high traffic). However, this has impact on consumer performance when only one queue at a time has high load. With global qos (shared channel) it should be possible.
Desired solution
Have a possibility to share channel for Receiver along with possibility to setup global qos.
The text was updated successfully, but these errors were encountered:
Receiver creates a new channel for every queue it consuming from. It removes the possibility to set global qos (described here: https://www.rabbitmq.com/consumer-prefetch.html#sharing-the-limit)
Motivation
If single consumer consumes from multiple queue it creates new channel and qos works only for single channel. We have multiple queues where load might be different at the specific point in time. If we set qos per channel we might get OOM so we must lower the value to the worst case (when each queue is fully occupied with high traffic). However, this has impact on consumer performance when only one queue at a time has high load. With global qos (shared channel) it should be possible.
Desired solution
Have a possibility to share channel for Receiver along with possibility to setup global qos.
The text was updated successfully, but these errors were encountered: