Reputation: 21
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
Reputation: 2993
You can run GET _cat/shards?v&index=<index-name>
via kibana
Api Results (an example):
Upvotes: 2