Package org.apache.solr.cloud
Class ActiveReplicaWatcher
java.lang.Object
org.apache.solr.cloud.ActiveReplicaWatcher
- All Implemented Interfaces:
org.apache.solr.common.cloud.CollectionStateWatcher
public class ActiveReplicaWatcher
extends Object
implements org.apache.solr.common.cloud.CollectionStateWatcher
Watch for replicas to become
Replica.State.ACTIVE. Watcher
is terminated (its onStateChanged(Set, DocCollection) method returns false) when all
listed replicas become active.
Additionally, the provided SolrCloseableLatch instance can be used to await for all
listed replicas to become active.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionList<org.apache.solr.common.cloud.Replica> Return the list of active replicas found so far.Collection name.Return the list of replica id-s that are not active yet (or unverified).Return a list of SolrCore names that are not active yet (or unverified).booleanonStateChanged(Set<String> liveNodes, org.apache.solr.common.cloud.DocCollection collectionState) toString()
-
Constructor Details
-
ActiveReplicaWatcher
public ActiveReplicaWatcher(String collection, List<String> replicaIds, List<String> solrCoreNames, org.apache.solr.common.SolrCloseableLatch latch) Construct the watcher. At least one replicaId or solrCoreName must be provided.- Parameters:
collection- collection namereplicaIds- list of replica id-ssolrCoreNames- list of SolrCore nameslatch- optional latch to await for all provided replicas to become active. This latch will be counted down by at most the number of provided replica id-s / SolrCore names.
-
-
Method Details
-
getCollection
Collection name. -
getActiveReplicas
Return the list of active replicas found so far. -
getReplicaIds
Return the list of replica id-s that are not active yet (or unverified). -
getSolrCoreNames
Return a list of SolrCore names that are not active yet (or unverified). -
toString
-
onStateChanged
public boolean onStateChanged(Set<String> liveNodes, org.apache.solr.common.cloud.DocCollection collectionState) - Specified by:
onStateChangedin interfaceorg.apache.solr.common.cloud.CollectionStateWatcher
-