Class TransportBroadcastAction<Request extends BroadcastRequest<Request>,Response extends BroadcastResponse,ShardRequest extends BroadcastShardRequest,ShardResponse extends BroadcastShardResponse>
java.lang.Object
org.elasticsearch.action.support.TransportAction<Request,Response>
org.elasticsearch.action.support.HandledTransportAction<Request,Response>
org.elasticsearch.action.support.broadcast.TransportBroadcastAction<Request,Response,ShardRequest,ShardResponse>
- Direct Known Subclasses:
TransportValidateQueryAction
public abstract class TransportBroadcastAction<Request extends BroadcastRequest<Request>,Response extends BroadcastResponse,ShardRequest extends BroadcastShardRequest,ShardResponse extends BroadcastShardResponse> extends HandledTransportAction<Request,Response>
-
Nested Class Summary
Nested Classes Modifier and Type Class Description protected classTransportBroadcastAction.AsyncBroadcastAction -
Field Summary
Fields Modifier and Type Field Description protected ClusterServiceclusterServiceprotected IndexNameExpressionResolverindexNameExpressionResolverprotected TransportServicetransportServiceFields inherited from class org.elasticsearch.action.support.TransportAction
actionName, localConnection, logger, taskManager -
Constructor Summary
Constructors Modifier Constructor Description protectedTransportBroadcastAction(java.lang.String actionName, ClusterService clusterService, TransportService transportService, ActionFilters actionFilters, IndexNameExpressionResolver indexNameExpressionResolver, Writeable.Reader<Request> request, Writeable.Reader<ShardRequest> shardRequest, java.lang.String shardExecutor) -
Method Summary
Modifier and Type Method Description protected abstract ClusterBlockExceptioncheckGlobalBlock(ClusterState state, Request request)protected abstract ClusterBlockExceptioncheckRequestBlock(ClusterState state, Request request, java.lang.String[] concreteIndices)protected voiddoExecute(Task task, Request request, ActionListener<Response> listener)protected abstract ResponsenewResponse(Request request, java.util.concurrent.atomic.AtomicReferenceArray<?> shardsResponses, ClusterState clusterState)protected abstract ShardRequestnewShardRequest(int numShards, ShardRouting shard, Request request)protected abstract ShardResponsereadShardResponse(StreamInput in)protected abstract ShardResponseshardOperation(ShardRequest request, Task task)protected abstract GroupShardsIterator<ShardIterator>shards(ClusterState clusterState, Request request, java.lang.String[] concreteIndices)Determines the shards this operation will be executed on.Methods inherited from class org.elasticsearch.action.support.TransportAction
execute, execute, executeMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Field Details
-
clusterService
-
transportService
-
indexNameExpressionResolver
-
-
Constructor Details
-
TransportBroadcastAction
protected TransportBroadcastAction(java.lang.String actionName, ClusterService clusterService, TransportService transportService, ActionFilters actionFilters, IndexNameExpressionResolver indexNameExpressionResolver, Writeable.Reader<Request> request, Writeable.Reader<ShardRequest> shardRequest, java.lang.String shardExecutor)
-
-
Method Details
-
doExecute
- Specified by:
doExecutein classTransportAction<Request extends BroadcastRequest<Request>,Response extends BroadcastResponse>
-
newResponse
protected abstract Response newResponse(Request request, java.util.concurrent.atomic.AtomicReferenceArray<?> shardsResponses, ClusterState clusterState) -
newShardRequest
protected abstract ShardRequest newShardRequest(int numShards, ShardRouting shard, Request request) -
readShardResponse
- Throws:
java.io.IOException
-
shardOperation
protected abstract ShardResponse shardOperation(ShardRequest request, Task task) throws java.io.IOException- Throws:
java.io.IOException
-
shards
protected abstract GroupShardsIterator<ShardIterator> shards(ClusterState clusterState, Request request, java.lang.String[] concreteIndices)Determines the shards this operation will be executed on. The operation is executed once per shard iterator, typically on the first shard in it. If the operation fails, it will be retried on the next shard in the iterator. -
checkGlobalBlock
-
checkRequestBlock
protected abstract ClusterBlockException checkRequestBlock(ClusterState state, Request request, java.lang.String[] concreteIndices)
-