Link Search Menu Expand Document Documentation Menu

CAT allocation

Introduced 1.0

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

Parameter | 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

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

GET _cat/allocation/<node_name>

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

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
350 characters left

Have a question? .

Want to contribute? or .