@RabbitListener with multiple queues and its concurrency #9900
-
Hello rabbitmq community If I have multiple queues listening on the same @rabbitlistener with concurrency defined as 3-5. Will each queue have an individual set of 3-5 threads or all queues will share a total of 3-5 threads? e.g. @RabbitListener(queues= {"Q1", "Q2", "Q3"}, concurrency="3-5") |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
@ddinde-mdsol this question is entirely Spring AMQP specific. Queues do not "share" threads, consumer implementations do. Please ask it in the appropriate Spring AMQP forum. For example, they have GitHub Discussions enabled. |
Beta Was this translation helpful? Give feedback.
@ddinde-mdsol this question is entirely Spring AMQP specific.
Queues do not "share" threads, consumer implementations do. Please ask it in the appropriate Spring AMQP forum. For example, they have GitHub Discussions enabled.