Package org.apache.solr.update
Class PeerSyncWithLeader
- java.lang.Object
-
- org.apache.solr.update.PeerSyncWithLeader
-
- All Implemented Interfaces:
SolrMetricProducer
public class PeerSyncWithLeader extends Object implements SolrMetricProducer
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
PeerSyncWithLeader.MissedUpdatesFinder
Helper class for doing comparison ourUpdates and other replicas's updates to find the updates that we missed
-
Field Summary
Fields Modifier and Type Field Description static String
METRIC_SCOPE
-
Constructor Summary
Constructors Constructor Description PeerSyncWithLeader(SolrCore core, String leaderUrl, int nUpdates)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
initializeMetrics(SolrMetricManager manager, String registry, String tag, String scope)
Initializes metrics specific to this producerPeerSync.PeerSyncResult
sync(List<Long> startingVersions)
Sync with leader
-
-
-
Field Detail
-
METRIC_SCOPE
public static final String METRIC_SCOPE
- See Also:
- Constant Field Values
-
-
Method Detail
-
initializeMetrics
public void initializeMetrics(SolrMetricManager manager, String registry, String tag, String scope)
Description copied from interface:SolrMetricProducer
Initializes metrics specific to this producer- Specified by:
initializeMetrics
in interfaceSolrMetricProducer
- Parameters:
manager
- an instance ofSolrMetricManager
registry
- registry name where metrics are registeredtag
- a symbolic tag that represents this instance of the producer, or a group of related instances that have the same life-cycle. This tag is used when managing life-cycle of some metrics and is set whenSolrMetricProducer.initializeMetrics(SolrMetricManager, String, String, String)
is called.scope
- scope of the metrics (eg. handler name) to separate metrics of
-
sync
public PeerSync.PeerSyncResult sync(List<Long> startingVersions)
Sync with leader- Parameters:
startingVersions
- : recent versions on startup- Returns:
- result of PeerSync with leader
-
-