We have set of queues and camel routes have been written to consume messages from the queue - queues live in an ActiveMQ server and camel routes in Apache Karaf. We have put up a cluster with multiple karaf nodes; problem is that these messages get read by camel routes in different nodes; is there a way to know the consumer who picked a particular message or set of messages? I googled around but did not get any head way so I am here asking your help.
In ActiveMQ clustering, how to find the consumer who picked a particular message or set of messages?
136 Views Asked by Venkatesh Laguduva At
3
There are 3 best solutions below
0

There is no tracking of consumed messages in ActiveMQ except for advisory messages. The solution is to let each Camel consumer announce that it processed a message somehow. There are tons of way to do that, such as writing to a log file, sending logs to a database, email or whatever depending on frequency and need. Of course, you could write some plugin or similar to ActiveMQ and have it log such information for your need, but that seems awkward.
You could try using a combination of: