Class ShardStateAction.ShardFailedClusterStateTaskExecutor
- java.lang.Object
-
- org.elasticsearch.cluster.action.shard.ShardStateAction.ShardFailedClusterStateTaskExecutor
-
- All Implemented Interfaces:
ClusterStateTaskExecutor<ShardStateAction.FailedShardEntry>
- Enclosing class:
- ShardStateAction
public static class ShardStateAction.ShardFailedClusterStateTaskExecutor extends java.lang.Object implements ClusterStateTaskExecutor<ShardStateAction.FailedShardEntry>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.elasticsearch.cluster.ClusterStateTaskExecutor
ClusterStateTaskExecutor.ClusterTasksResult<T>, ClusterStateTaskExecutor.TaskResult
-
-
Constructor Summary
Constructors Constructor Description ShardFailedClusterStateTaskExecutor(AllocationService allocationService, RoutingService routingService, org.apache.logging.log4j.Logger logger)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclusterStatePublished(ClusterChangedEvent clusterChangedEvent)Callback invoked after new cluster state is published.ClusterStateTaskExecutor.ClusterTasksResult<ShardStateAction.FailedShardEntry>execute(ClusterState currentState, java.util.List<ShardStateAction.FailedShardEntry> tasks)Update the cluster state based on the current state and the given tasks.-
Methods inherited from interface org.elasticsearch.cluster.ClusterStateTaskExecutor
describeTasks, runOnlyOnMaster
-
-
-
-
Constructor Detail
-
ShardFailedClusterStateTaskExecutor
public ShardFailedClusterStateTaskExecutor(AllocationService allocationService, RoutingService routingService, org.apache.logging.log4j.Logger logger)
-
-
Method Detail
-
execute
public ClusterStateTaskExecutor.ClusterTasksResult<ShardStateAction.FailedShardEntry> execute(ClusterState currentState, java.util.List<ShardStateAction.FailedShardEntry> tasks) throws java.lang.Exception
Description copied from interface:ClusterStateTaskExecutorUpdate the cluster state based on the current state and the given tasks. Return the *same instance* if no state should be changed.- Specified by:
executein interfaceClusterStateTaskExecutor<ShardStateAction.FailedShardEntry>- Throws:
java.lang.Exception
-
clusterStatePublished
public void clusterStatePublished(ClusterChangedEvent clusterChangedEvent)
Description copied from interface:ClusterStateTaskExecutorCallback invoked after new cluster state is published. Note that this method is not invoked if the cluster state was not updated. Note that this method will be executed using system context.- Specified by:
clusterStatePublishedin interfaceClusterStateTaskExecutor<ShardStateAction.FailedShardEntry>- Parameters:
clusterChangedEvent- the change event for this cluster state change, containing both old and new states
-
-