I have a JMS theme in an ActiveMQ brokerage cluster network (aka distributed theme). I have an external JMS consumer (Weblogic portal) that needs to subscribe to this topic and receive all messages sent to it (through all brokers).
If a consumer subscribes to this topic with one of the brokers, he will receive only a subset of the messages that the broker receives, right?
I suppose that I could create a consumer for each broker and combine the messages together, but then I am also on the hook to solve connection problems and need to know which brokers are available, etc.
Question: is there a way to set up a network of brokers or consumers to receive all messages from a distributed JMS topic?
source share