Hello, I'm looking into an implementation of ActiveMQ Artemis at my org. I want to be sure I can use a JMS client to publish to a topic on any node in the below diagram and subscribe from any or all other nodes.
I've not been able to prove this configuration. The bridge works between two nodes, but when I add additional nodes it doesn't seem to create more bridges as I would expect. Note that the Core Bridges will be going over the WAN, that's why 4-6 aren't part of the cluster. See some of my broker.xml below. Let me know if you have questions. [image: Inline image 1] *Node 1:* <queues> <queue name="jms.topic.Node1"> <address>jms.topic.Node1.#</address> </queue> </queues> <connectors> <!-- Connector to the other node --> <connector name="Node4-connector">tcp://192.168.1.5:61616 </connector> <connector name="Node5-connector">tcp://192.168.1.6:61616 </connector> <connector name="netty-connector">tcp://192.168.1.2:61616 </connector> </connectors> <bridges> <bridge name="my-bridge"> <queue-name>jms.topic.CHQ</queue-name> <retry-interval>1000</retry-interval> <retry-interval-multiplier>1.0</retry-interval-multiplier> <initial-connect-attempts>-1</initial-connect-attempts> <reconnect-attempts>-1</reconnect-attempts> <failover-on-server-shutdown>false</failover-on-server-shutdown> <use-duplicate-detection>true</use-duplicate-detection> <confirmation-window-size>10000000</confirmation-window-size> <static-connectors> <connector-ref>Node4-connector</connector-ref> <connector-ref>Node5-connector</connector-ref> </static-connectors> </bridge> </bridges> *Node 5:* <queues> <queue name="jms.topic.Node5"> <address>jms.topic.Node5.#</address> </queue> </queues> <connectors> <!-- Connector to the other node --> <connector name="Node1-connector">tcp://192.168.1.2:61616 </connector> <connector name="Node2-connector">tcp://192.168.1.3:61616 </connector> <connector name="Node3-connector">tcp://192.168.1.4:61616 </connector> <connector name="Node4-connector">tcp://192.168.1.5:61616 </connector> <connector name="netty-connector">tcp://192.168.1.6:61616 </connector> </connectors> <bridges> <bridge name="my-bridge"> <queue-name>jms.topic.Node5</queue-name> <retry-interval>1000</retry-interval> <retry-interval-multiplier>1.0</retry-interval-multiplier> <initial-connect-attempts>-1</initial-connect-attempts> <reconnect-attempts>-1</reconnect-attempts> <failover-on-server-shutdown>false</failover-on-server-shutdown> <use-duplicate-detection>true</use-duplicate-detection> <static-connectors> <connector-ref>Node1-connector</connector-ref> <connector-ref>Node2-connector</connector-ref> <connector-ref>Node3-connector</connector-ref> <connector-ref>Node4-connector</connector-ref> </static-connectors> </bridge> </bridges> Thanks, Kevin