Reputation: 321
I am new to ActiveMQ Artemis,
I am trying to understand symmetric-cluster in ActiveMQ Artemis.
Here is example of it which i am trying to understand.
I am getting the list of Topic message and Queue message which are consume from cluster node, How can i get the information about node means which node is returning this information(Queue message/Topic message)
Upvotes: 1
Views: 1124
Reputation: 35152
Artemis doesn't add any meta-data to the message to indicate which cluster node it's coming from. Typically a cluster is comprised of interchangeable/indistinguishable nodes so it doesn't actually matter where the message comes from.
Upvotes: 3