Re: [ActiveMQ Artemis]: Message Groups; STOMP; idle consumers

2019-02-21 Thread Justin Bertram
I believe you're seeing the expected behavior. A queue's fundamental semantics are first-in-first-out (i.e. FIFO). Using message grouping doesn't change those semantics. The first 100 messages in the queue (which all belong to the same group) must be dispatched before the 101st message is dispatche

[ActiveMQ Artemis]: Message Groups; STOMP; idle consumers

2019-02-21 Thread Egor Kalinin
Good day, Protocol: STOMP auto-create-queues, auto-create-addresses Steps to reproduce: 1. Run two consumers which subscribe to the `test` queue ['ack': 'client', 'subscription-type': 'ANYCAST'] which are in the infinite loop take a message from a queue, wait for 1 second and then send ACK. 2. Pu