Class ShardStateAction.ShardStartedClusterStateTaskExecutor
java.lang.Object
org.elasticsearch.cluster.action.shard.ShardStateAction.ShardStartedClusterStateTaskExecutor
- All Implemented Interfaces:
ClusterStateTaskExecutor<ShardStateAction.StartedShardEntry>,ClusterStateTaskListener
- Enclosing class:
- ShardStateAction
public static class ShardStateAction.ShardStartedClusterStateTaskExecutor
extends Object
implements ClusterStateTaskExecutor<ShardStateAction.StartedShardEntry>, ClusterStateTaskListener
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.elasticsearch.cluster.ClusterStateTaskExecutor
ClusterStateTaskExecutor.ClusterTasksResult<T>, ClusterStateTaskExecutor.TaskResult -
Constructor Summary
ConstructorsConstructorDescriptionShardStartedClusterStateTaskExecutor(AllocationService allocationService, RerouteService rerouteService, Supplier<Priority> prioritySupplier, org.apache.logging.log4j.Logger logger) -
Method Summary
Modifier and TypeMethodDescriptionvoidclusterStatePublished(ClusterChangedEvent clusterChangedEvent)Callback invoked after new cluster state is published.execute(ClusterState currentState, List<ShardStateAction.StartedShardEntry> tasks)Update the cluster state based on the current state and the given tasks.voidA callback for when task execution fails.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.elasticsearch.cluster.ClusterStateTaskExecutor
describeTasks, runOnlyOnMasterMethods inherited from interface org.elasticsearch.cluster.ClusterStateTaskListener
clusterStateProcessed, onNoLongerMaster
-
Constructor Details
-
ShardStartedClusterStateTaskExecutor
public ShardStartedClusterStateTaskExecutor(AllocationService allocationService, RerouteService rerouteService, Supplier<Priority> prioritySupplier, org.apache.logging.log4j.Logger logger)
-
-
Method Details
-
execute
public ClusterStateTaskExecutor.ClusterTasksResult<ShardStateAction.StartedShardEntry> execute(ClusterState currentState, List<ShardStateAction.StartedShardEntry> tasks) throws ExceptionDescription 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.StartedShardEntry>- Throws:
Exception
-
onFailure
Description copied from interface:ClusterStateTaskListenerA callback for when task execution fails. Implementations of this callback should not throw exceptions: an exception thrown here is logged by the master service atERRORlevel and otherwise ignored. If log-and-ignore is the right behaviour then implementations should do so themselves, typically using a more specific logger and at a less dramatic log level.- Specified by:
onFailurein interfaceClusterStateTaskListener
-
clusterStatePublished
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.StartedShardEntry>- Parameters:
clusterChangedEvent- the change event for this cluster state change, containing both old and new states
-