Module org.elasticsearch.server
Class IndicesClusterStateService
java.lang.Object
org.elasticsearch.common.component.AbstractLifecycleComponent
org.elasticsearch.indices.cluster.IndicesClusterStateService
- All Implemented Interfaces:
Closeable
,AutoCloseable
,ClusterStateApplier
,LifecycleComponent
,Releasable
public class IndicesClusterStateService
extends AbstractLifecycleComponent
implements ClusterStateApplier
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interface
static interface
IndicesClusterStateService.AllocatedIndices<T extends IndicesClusterStateService.Shard,
U extends IndicesClusterStateService.AllocatedIndex<T>> static interface
-
Field Summary
FieldsModifier and TypeFieldDescriptionFields inherited from class org.elasticsearch.common.component.AbstractLifecycleComponent
lifecycle
-
Constructor Summary
ConstructorsConstructorDescriptionIndicesClusterStateService
(Settings settings, IndicesService indicesService, ClusterService clusterService, ThreadPool threadPool, PeerRecoveryTargetService recoveryTargetService, ShardStateAction shardStateAction, RepositoriesService repositoriesService, SearchService searchService, PeerRecoverySourceService peerRecoverySourceService, SnapshotShardsService snapshotShardsService, PrimaryReplicaSyncer primaryReplicaSyncer, RetentionLeaseSyncer retentionLeaseSyncer, NodeClient client) -
Method Summary
Modifier and TypeMethodDescriptionvoid
Called when a new cluster state (ClusterChangedEvent.state()
needs to be applied.protected void
doClose()
protected void
doStart()
protected void
doStop()
protected void
updateGlobalCheckpointForShard
(ShardId shardId) Methods inherited from class org.elasticsearch.common.component.AbstractLifecycleComponent
addLifecycleListener, close, lifecycleState, start, stop
-
Field Details
-
SHARD_LOCK_RETRY_INTERVAL_SETTING
-
SHARD_LOCK_RETRY_TIMEOUT_SETTING
-
-
Constructor Details
-
IndicesClusterStateService
@Inject public IndicesClusterStateService(Settings settings, IndicesService indicesService, ClusterService clusterService, ThreadPool threadPool, PeerRecoveryTargetService recoveryTargetService, ShardStateAction shardStateAction, RepositoriesService repositoriesService, SearchService searchService, PeerRecoverySourceService peerRecoverySourceService, SnapshotShardsService snapshotShardsService, PrimaryReplicaSyncer primaryReplicaSyncer, RetentionLeaseSyncer retentionLeaseSyncer, NodeClient client)
-
-
Method Details
-
doStart
protected void doStart()- Specified by:
doStart
in classAbstractLifecycleComponent
-
doStop
protected void doStop()- Specified by:
doStop
in classAbstractLifecycleComponent
-
doClose
protected void doClose()- Specified by:
doClose
in classAbstractLifecycleComponent
-
applyClusterState
Description copied from interface:ClusterStateApplier
Called when a new cluster state (ClusterChangedEvent.state()
needs to be applied. The cluster state to be applied is already committed when this method is called, so an applier must therefore be prepared to deal with any state it receives without throwing an exception. Throwing an exception from an applier is very bad because it will stop the application of this state before it has reached all the other appliers, and will likely result in another attempt to apply the same (or very similar) cluster state which might continue until this node is removed from the cluster.Cluster states are applied one-by-one which means they can be a performance bottleneck. Implementations of this method should therefore be fast, so please consider forking work into the background rather than doing everything inline.
- Specified by:
applyClusterState
in interfaceClusterStateApplier
-
updateGlobalCheckpointForShard
-