I am using RabbitMQ (cluster) and connecting to it using a Node.js client (node-amqp - https://github.com/postwait/node-amqp). The RabbitMQ docs states that handling a failover scenario (cluster's node failure) should be handled by the client meaning the client should detect the fail and connect to another node in the cluster. What is the simplest way to support this failover balancing. Is the node-amqp client support this ? Any example or solution will be appreciated.
Thanks.