Osh_plov
Osh_plov

Reputation: 21

Elasticsearch index location in the cluster

I have 10 node elasticsearch cluster, and in this cluster the kabul index exist with 1 primary and 1 replica shard, and i want to know on what node the primary and replica shards of given index exist, how do this?

Upvotes: 0

Views: 139

Answers (1)

Assael Azran
Assael Azran

Reputation: 2993

You can run GET _cat/shards?v&index=<index-name> via kibana

cat shards API

Api Results (an example):

enter image description here

Upvotes: 2

Related Questions