I have an ElasticSearch server with thousands of indexes. My question is how can I know on which node is my index saved on
CodePudding user response:
You need to use the cat shards API.
GET /_cat/shards/index-name
It will return where the shards of the index-name
is located.