Re: MessageGroup behavior

2018-03-09 Thread vramanx
Thanks for the clarification Tim! From the documentation, I thought that the consumers have to be tagged with static GroupID which is then later set on the producer side. So on the consumer side we just need to group workers as a processing unit and the system will pick an available group to assig

Re: MessageGroup behavior

2018-02-26 Thread vramanx
The group id is dynamic. So we cant really have a set of consumers with a pre-defined set of group ids. One way to handle this is to spin up a singleton actor consumer for a group id if none exists. Will be great if ActiveMQ supports this concept of "dynamic group id" out of the box so there is a

MessageGroup behavior

2018-02-24 Thread vramanx
Is it possible to have a fixed set of consumers in a MessageGroup listening to all the messages, but the processing will be sequential for a given group id? for example, we have an order processing system and the group id is the order id. messages for an order should be processed sequentially. as