ActiveMQ 5.12.1
Setup Network of Brokers between two clusters of Master/Slave brokers.
With reference to following links,
http://bsnyderblog.blogspot.com/2010/10/new-features-in-activemq-54-automatic.html
http://activemq.apache.org/failover-transport-reference.html
Configured "updateClusterClients" and "rebalanceClusterClients" to
achieve load balancing. Used a test case as below.
1. connect client 1 to cluster 1
2. connect client 2 to cluster 2
3. shutdown cluster 1. Now, client 1 is automatically connected to
cluster 2.
4. started cluster 1 back.
Was expecting client 1 to re-connect to cluster 1 and balance the load.
But, I do not see that happening. Is this the right expectation? Also, I
have noticed that some times if two clients are connecting to one of the
clusters, they are automatically re-connected to other cluster which is
a desirable behavior. Essentially, Wondering if I can rely one those
configuration parameters for load balancing. Thanks.