OpenSearch/docs/reference/cat/allocation.asciidoc

27 lines
904 B
Plaintext
Raw Normal View History

2013-11-14 20:14:39 -05:00
[[cat-allocation]]
== cat allocation
2013-11-14 20:14:39 -05:00
`allocation` provides a snapshot of how many shards are allocated to each data node
and how much disk space they are using.
2013-11-14 20:14:39 -05:00
[source,js]
2013-11-14 20:14:39 -05:00
--------------------------------------------------
GET /_cat/allocation?v
2013-11-14 20:14:39 -05:00
--------------------------------------------------
// CONSOLE
// TEST[s/^/PUT test\n{"settings": {"number_of_replicas": 0}}\n/]
Might respond with:
[source,txt]
--------------------------------------------------
shards disk.indices disk.used disk.avail disk.total disk.percent host ip node
1 260b 47.3gb 43.4gb 100.7gb 46 127.0.0.1 127.0.0.1 CSUXak2
--------------------------------------------------
// TESTRESPONSE[s/\d+(\.\d+)?[tgmk]?b/\\d+(\\.\\d+)?[tgmk]?b/ s/46/\\d+/]
// TESTRESPONSE[s/CSUXak2/.+/ _cat]
2013-11-14 20:14:39 -05:00
Here we can see that the single shard created has been allocated to the single
node available.