Github user mattrpav commented on the issue:
https://github.com/apache/activemq-artemis/pull/875
@graben agreed.
Queue Consumer use cases:
# Connection(s) | # Queue(s) | Option | Desired Behavior
--------------- | ------------ | ------- | ---------
1 | 1 | | Single threaded, ordered message consumption
1 | 1..n | | Single threaded, ordered consumption of multiple queues
(comma separated today)
1..x | 1..y | Using connection pool | multithreaded, ordered consumption
using shared connection pool (same clientId). Each thread getting ordered
messages for their specific queues.
2 | 1 | | Round-robin dispatch of message consumption
2 | 1 | exclusiveConsumer | Single threaded, order consumption w/ HA
standby consumer
2 | 1 | exclusiveConsumer+JMSXGroupId | Multi-threaded, order consumption
w/ active-active consumers separated by header value
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---