Shrink Index API
editShrink Index API
editResize Request
editThe Shrink API requires a ResizeRequest
instance.
A ResizeRequest
requires two string arguments:
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 shrink index API
returns a response, as an |
|
The number of active shard copies to wait for before the shrink index API
returns a response, as an |
Synchronous Execution
editResizeResponse resizeResponse = client.indices().shrink(request, RequestOptions.DEFAULT);
Asynchronous Execution
editThe asynchronous execution of a shrink index request requires both the ResizeRequest
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 ResizeResponse
looks like:
Shrink Index Response
editThe returned ResizeResponse
allows to retrieve information about the
executed operation as follows: