Reputation: 67
Initially, we built 2 clusters (nodeA, nodeB) with rabbitmq and created quorum in the cluster. However, knowing that two nodes cannot mirror, I added one node (node C) as a cluster during Rabbitmq operation, but the new node is not added to followers in the existing quorum queue. Is it possible to manually add a new node to followers?
Upvotes: 1
Views: 1443
Reputation: 22750
yes, it is possible. See the documentation here
the command you are looking for is:
rabbitmq-queues add_member [-p <vhost>] <queue-name> <node>
Upvotes: 1