- Java REST Client (deprecated): other versions:
- Overview
- Java Low Level REST Client
- Java High Level REST Client
- Getting started
- Document APIs
- Search APIs
- Miscellaneous APIs
- Indices APIs
- Analyze API
- Create Index API
- Delete Index API
- Indices Exists API
- Open Index API
- Close Index API
- Shrink Index API
- Split Index API
- Refresh API
- Flush API
- Flush Synced API
- Clear Cache API
- Force Merge API
- Rollover Index API
- Put Mapping API
- Get Mappings API
- Get Field Mappings API
- Index Aliases API
- Exists Alias API
- Get Alias API
- Update Indices Settings API
- Get Settings API
- Put Template API
- Validate Query API
- Get Templates API
- Get Index API
- Cluster APIs
- Ingest APIs
- Snapshot APIs
- Tasks APIs
- Script APIs
- Licensing APIs
- Machine Learning APIs
- Put Job API
- Get Job API
- Delete Job API
- Open Job API
- Close Job API
- Update Job API
- Flush Job API
- Put Datafeed API
- Get Datafeed API
- Delete Datafeed API
- Preview Datafeed API
- Start Datafeed API
- Stop Datafeed API
- Get Datafeed Stats API
- Get Job Stats API
- Forecast Job API
- Delete Forecast API
- Get Buckets API
- Get Overall Buckets API
- Get Records API
- Post Data API
- Get Influencers API
- Get Categories API
- Get Calendars API
- Put Calendar API
- Delete Calendar API
- Migration APIs
- Rollup APIs
- Security APIs
- Watcher APIs
- Graph APIs
- Using Java Builders
- Migration Guide
- License
Cluster Health API
editCluster Health API
editThe Cluster Health API allows getting cluster health.
Cluster Health Request
editA ClusterHealthRequest
:
ClusterHealthRequest request = new ClusterHealthRequest();
There are no required parameters. By default, the client will check all indices and will not wait for any events.
Indices
editIndices which should be checked can be passed in the constructor:
ClusterHealthRequest request = new ClusterHealthRequest("index1", "index2");
Or using the corresponding setter method:
ClusterHealthRequest request = new ClusterHealthRequest(); request.indices("index1", "index2");
Other parameters
editOther parameters can be passed only through setter methods:
The status to wait (e.g. |
|
Using predefined method |
Wait for |
|
Using |
|
Using |
Synchronous Execution
editWhen executing a ClusterHealthRequest
in the following manner, the client waits
for the ClusterHealthResponse
to be returned before continuing with code execution:
ClusterHealthResponse response = client.cluster().health(request, RequestOptions.DEFAULT);
Asynchronous Execution
editExecuting a ClusterHealthRequest
can also be done in an asynchronous fashion so that
the client can return directly. Users need to specify how the response or
potential failures will be handled by passing the request and a listener to the
asynchronous health 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 health
looks like:
Cluster Health Response
editThe returned ClusterHealthResponse
contains the next information about the
cluster:
Whether request was timed out while processing |
|
Status of the request ( |
int numberOfNodes = response.getNumberOfNodes(); int numberOfDataNodes = response.getNumberOfDataNodes();
int activeShards = response.getActiveShards(); int activePrimaryShards = response.getActivePrimaryShards(); int relocatingShards = response.getRelocatingShards(); int initializingShards = response.getInitializingShards(); int unassignedShards = response.getUnassignedShards(); int delayedUnassignedShards = response.getDelayedUnassignedShards(); double activeShardsPercent = response.getActiveShardsPercent();
Number of active shards |
|
Number of primary active shards |
|
Number of relocating shards |
|
Number of initializing shards |
|
Number of unassigned shards |
|
Number of unassigned shards that are currently being delayed |
|
Percent of active shards |
TimeValue taskMaxWaitingTime = response.getTaskMaxWaitingTime(); int numberOfPendingTasks = response.getNumberOfPendingTasks(); int numberOfInFlightFetch = response.getNumberOfInFlightFetch();
Maximum wait time of all tasks in the queue |
|
Number of currently pending tasks |
|
Number of async fetches that are currently ongoing |
ClusterIndexHealth index = indices.get("index"); ClusterHealthStatus indexStatus = index.getStatus(); int numberOfShards = index.getNumberOfShards(); int numberOfReplicas = index.getNumberOfReplicas(); int activeShards = index.getActiveShards(); int activePrimaryShards = index.getActivePrimaryShards(); int initializingShards = index.getInitializingShards(); int relocatingShards = index.getRelocatingShards(); int unassignedShards = index.getUnassignedShards();
Map<Integer, ClusterShardHealth> shards = index.getShards(); ClusterShardHealth shardHealth = shards.get(0); int shardId = shardHealth.getShardId(); ClusterHealthStatus shardStatus = shardHealth.getStatus(); int active = shardHealth.getActiveShards(); int initializing = shardHealth.getInitializingShards(); int unassigned = shardHealth.getUnassignedShards(); int relocating = shardHealth.getRelocatingShards(); boolean primaryActive = shardHealth.isPrimaryActive();
On this page