public class TransportRecoveryAction extends TransportBroadcastByNodeAction<RecoveryRequest,RecoveryResponse,RecoveryState>
TransportBroadcastByNodeAction.AsyncAction, TransportBroadcastByNodeAction.EmptyResult, TransportBroadcastByNodeAction.NodeRequest
actionName, indexNameExpressionResolver, taskManager, threadPool
deprecationLogger, logger, settings
Constructor and Description |
---|
TransportRecoveryAction(Settings settings,
ThreadPool threadPool,
ClusterService clusterService,
TransportService transportService,
IndicesService indicesService,
ActionFilters actionFilters,
IndexNameExpressionResolver indexNameExpressionResolver) |
Modifier and Type | Method and Description |
---|---|
protected ClusterBlockException |
checkGlobalBlock(ClusterState state,
RecoveryRequest request)
Executes a global block check before polling the cluster state.
|
protected ClusterBlockException |
checkRequestBlock(ClusterState state,
RecoveryRequest request,
java.lang.String[] concreteIndices)
Executes a global request-level check before polling the cluster state.
|
protected RecoveryResponse |
newResponse(RecoveryRequest request,
int totalShards,
int successfulShards,
int failedShards,
java.util.List<RecoveryState> responses,
java.util.List<ShardOperationFailedException> shardFailures,
ClusterState clusterState)
Creates a new response to the underlying request.
|
protected RecoveryRequest |
readRequestFrom(StreamInput in)
Deserialize a request from an input stream
|
protected RecoveryState |
readShardResult(StreamInput in)
Deserialize a shard-level result from an input stream
|
protected RecoveryState |
shardOperation(RecoveryRequest request,
ShardRouting shardRouting)
Executes the shard-level operation.
|
protected ShardsIterator |
shards(ClusterState state,
RecoveryRequest request,
java.lang.String[] concreteIndices)
Determines the shards on which this operation will be executed on.
|
doExecute, doExecute
execute, execute, execute, execute
logDeprecatedSetting, logRemovedSetting, nodeName
@Inject public TransportRecoveryAction(Settings settings, ThreadPool threadPool, ClusterService clusterService, TransportService transportService, IndicesService indicesService, ActionFilters actionFilters, IndexNameExpressionResolver indexNameExpressionResolver)
protected RecoveryState readShardResult(StreamInput in) throws java.io.IOException
TransportBroadcastByNodeAction
readShardResult
in class TransportBroadcastByNodeAction<RecoveryRequest,RecoveryResponse,RecoveryState>
in
- input streamjava.io.IOException
protected RecoveryResponse newResponse(RecoveryRequest request, int totalShards, int successfulShards, int failedShards, java.util.List<RecoveryState> responses, java.util.List<ShardOperationFailedException> shardFailures, ClusterState clusterState)
TransportBroadcastByNodeAction
newResponse
in class TransportBroadcastByNodeAction<RecoveryRequest,RecoveryResponse,RecoveryState>
request
- the underlying requesttotalShards
- the total number of shards considered for execution of the operationsuccessfulShards
- the total number of shards for which execution of the operation was successfulfailedShards
- the total number of shards for which execution of the operation failedresponses
- the per-node aggregated shard-level resultsshardFailures
- the exceptions corresponding to shard operationa failuresclusterState
- the cluster stateprotected RecoveryRequest readRequestFrom(StreamInput in) throws java.io.IOException
TransportBroadcastByNodeAction
readRequestFrom
in class TransportBroadcastByNodeAction<RecoveryRequest,RecoveryResponse,RecoveryState>
in
- input streamjava.io.IOException
protected RecoveryState shardOperation(RecoveryRequest request, ShardRouting shardRouting)
TransportBroadcastByNodeAction
shardOperation
in class TransportBroadcastByNodeAction<RecoveryRequest,RecoveryResponse,RecoveryState>
request
- the node-level requestshardRouting
- the shard on which to execute the operationprotected ShardsIterator shards(ClusterState state, RecoveryRequest request, java.lang.String[] concreteIndices)
TransportBroadcastByNodeAction
shards
in class TransportBroadcastByNodeAction<RecoveryRequest,RecoveryResponse,RecoveryState>
state
- the cluster staterequest
- the underlying requestconcreteIndices
- the concrete indices on which to execute the operationprotected ClusterBlockException checkGlobalBlock(ClusterState state, RecoveryRequest request)
TransportBroadcastByNodeAction
checkGlobalBlock
in class TransportBroadcastByNodeAction<RecoveryRequest,RecoveryResponse,RecoveryState>
state
- the cluster staterequest
- the underlying requestprotected ClusterBlockException checkRequestBlock(ClusterState state, RecoveryRequest request, java.lang.String[] concreteIndices)
TransportBroadcastByNodeAction
checkRequestBlock
in class TransportBroadcastByNodeAction<RecoveryRequest,RecoveryResponse,RecoveryState>
state
- the cluster staterequest
- the underlying requestconcreteIndices
- the concrete indices on which to execute the operation