Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
7.0
-
None
-
None
-
None
Description
In OverseerAutoReplicaFailoverThread it goes over each and every replica to check if it needs to be reloaded on a new node. In each such round it reads cluster state just in the beginning. Especially in case of big clusters, cluster state may change during the process of iterating through the replicas. As a result false decisions may be made: restarting a healthy core, or not handling a bad node.
The code fragment in question:
for (Slice slice : slices) { if (slice.getState() == Slice.State.ACTIVE) { final Collection<DownReplica> downReplicas = new ArrayList<DownReplica>(); int goodReplicas = findDownReplicasInSlice(clusterState, docCollection, slice, downReplicas);
The solution seems rather straightforward, reading the state every time:
int goodReplicas = findDownReplicasInSlice(zkStateReader.getClusterState(), docCollection, slice, downReplicas);
The only counter argument that comes into my mind is too frequent reading of the cluster state. We can enhance this naive solution so that re-reading is done only if a bad node is found. But I am not sure if such a read optimization is necessary.
I have done some unit tests around this class, mocking out even the time factor. It runs in a second. I am interested in getting feedback about such an approach. I will upload a patch with this shortly.