Hi there, I have a question about reconnecting to a cluster. So my goal is if I have a cluster with 3 nodes A,B and C to make the Artemis client connect to A and if that connection dies - maybe because node A was shutdown for maintenance - it would reconnect to node B. If B goes down it will try to connect to C and if that is down it should try A again, etc. The client should actually try this without ever giving up. Now I always thought that this would be achieved with the "reconnectAttempts=-1" URL parameter. But I recently stumbled over documentation that suggested that this would only work with "ha=true" as well. But since I have a cluster without HA nodes I do not have that parameter set.
So now I wonder if what I am doing is actually correct or what URL parameters I actually need to set to get my desired behaviour? It actually doesn't matter to me if the client is trying the servers round robin or random as long as it does actually try to reconnect indefinitely to all cluster members in case of failure of the current one. Thanks, Thorsten