Open Index API
editOpen Index API
editOpen Index Request
editAn OpenIndexRequest
requires an index
argument:
Optional arguments
editThe following arguments can optionally be provided:
Timeout to wait for the all the nodes to acknowledge the index is opened
as a |
|
Timeout to wait for the all the nodes to acknowledge the index is opened
as a |
Timeout to connect to the master node as a |
|
Timeout to connect to the master node as a |
The number of active shard copies to wait for before the open index API
returns a response, as an |
|
The number of active shard copies to wait for before the open index API
returns a response, as an |
Synchronous Execution
editOpenIndexResponse openIndexResponse = client.indices().open(request, RequestOptions.DEFAULT);
Asynchronous Execution
editThe asynchronous execution of an open index request requires both the OpenIndexRequest
instance and an ActionListener
instance to be passed to the asynchronous
method:
The asynchronous method does not block and returns immediately. Once it is
completed the ActionListener
is called back using the onResponse
method
if the execution successfully completed or using the onFailure
method if
it failed.
A typical listener for OpenIndexResponse
looks like:
Open Index Response
editThe returned OpenIndexResponse
allows to retrieve information about the
executed operation as follows: