Uses of Class
org.elasticsearch.action.admin.indices.open.OpenIndexRequest
-
Packages that use OpenIndexRequest Package Description org.elasticsearch.action.admin.indices.open org.elasticsearch.client -
-
Uses of OpenIndexRequest in org.elasticsearch.action.admin.indices.open
Methods in org.elasticsearch.action.admin.indices.open that return OpenIndexRequest Modifier and Type Method Description OpenIndexRequestOpenIndexRequest. indices(String... indices)Sets the indices to be openedOpenIndexRequestOpenIndexRequest. indicesOptions(IndicesOptions indicesOptions)Specifies what type of requested indices to ignore and how to deal with wildcard expressions.OpenIndexRequestOpenIndexRequest. waitForActiveShards(int waitForActiveShards)A shortcut forwaitForActiveShards(ActiveShardCount)where the numerical shard count is passed in, instead of having to first callActiveShardCount.from(int)to get the ActiveShardCount.OpenIndexRequestOpenIndexRequest. waitForActiveShards(ActiveShardCount waitForActiveShards)Sets the number of shard copies that should be active for indices opening to return.Methods in org.elasticsearch.action.admin.indices.open with parameters of type OpenIndexRequest Modifier and Type Method Description protected ClusterBlockExceptionTransportOpenIndexAction. checkBlock(OpenIndexRequest request, ClusterState state)protected voidTransportOpenIndexAction. doExecute(Task task, OpenIndexRequest request, ActionListener<OpenIndexResponse> listener)protected voidTransportOpenIndexAction. masterOperation(OpenIndexRequest request, ClusterState state, ActionListener<OpenIndexResponse> listener) -
Uses of OpenIndexRequest in org.elasticsearch.client
Methods in org.elasticsearch.client that return OpenIndexRequest Modifier and Type Method Description static OpenIndexRequestRequests. openIndexRequest(String index)Creates an open index request.Methods in org.elasticsearch.client with parameters of type OpenIndexRequest Modifier and Type Method Description ActionFuture<OpenIndexResponse>IndicesAdminClient. open(OpenIndexRequest request)Open an index based on the index name.voidIndicesAdminClient. open(OpenIndexRequest request, ActionListener<OpenIndexResponse> listener)Open an index based on the index name.OpenIndexResponseIndicesClient. open(OpenIndexRequest openIndexRequest, RequestOptions options)Opens an index using the Open Index API.CancellableIndicesClient. openAsync(OpenIndexRequest openIndexRequest, RequestOptions options, ActionListener<OpenIndexResponse> listener)Asynchronously opens an index using the Open Index API.
-