Skip to content

Latest commit

 

History

History
82 lines (64 loc) · 2.34 KB

File metadata and controls

82 lines (64 loc) · 2.34 KB
layout title parent redirect_from nav_order has_children
default
CAT allocation
CAT API
/opensearch/rest-api/cat/cat-allocation/
5
false

CAT allocation

Introduced 1.0 {: .label .label-purple }

The CAT allocation operation lists the allocation of disk space for indexes and the number of shards on each node.

Endpoints

GET /_cat/allocation
GET /_cat/allocation/{node_id}

Query parameters

The following table lists the available query parameters. All query parameters are optional.

Parameter Data type Description Default
bytes String The units used to display byte values.
cluster_manager_timeout String A timeout for connection to the cluster manager node.
format String A short version of the HTTP Accept header, such as json or yaml.
h List A comma-separated list of column names to display.
help Boolean Returns help information. false
local Boolean Returns local information but does not retrieve the state from cluster-manager node. false
s List A comma-separated list of column names or column aliases to sort by.
v Boolean Enables verbose mode, which displays column headers. false

Example requests

GET _cat/allocation?v

{% include copy-curl.html %}

To limit the information to a specific node, add the node name after your query:

GET _cat/allocation/<node_name>

{% include copy-curl.html %}

If you want to get information for more than one node, separate the node names with commas:

GET _cat/allocation/node_name_1,node_name_2,node_name_3

{% include copy-curl.html %}

Example response

The following response shows that eight shards are allocated to each of the two nodes available:

shards | disk.indices | disk.used | disk.avail | disk.total | disk.percent host | ip          | node
  8    |   989.4kb    |   25.9gb  |   32.4gb   |   58.4gb   |   44 172.18.0.4   | 172.18.0.4  | odfe-node1
  8    |   962.4kb    |   25.9gb  |   32.4gb   |   58.4gb   |   44 172.18.0.3   | 172.18.0.3  | odfe-node2