In my ES cluster i have 19 nodes. Following is my cluster health.
{ "cluster_name" : "AVS", "status" : "green", "timed_out" : false, "number_of_nodes" : 19, "number_of_data_nodes" : 19, "active_primary_shards" : 23, "active_shards" : 125, "relocating_shards" : 0, "initializing_shards" : 0, "unassigned_shards" : 0, "delayed_unassigned_shards" : 0, "number_of_pending_tasks" : 0, "number_of_in_flight_fetch" : 0 }
Currently all my indices are GREEN. Now for one of my indices, it's current settings are 10 shards and 5 replicas. But if I increases number of replicas from 5 to any number more than that, all of new replicated shards are being in state UNASSIGNED.
Considering number of nodes i have i am assuming i can have more than 5 replicas. What am i missing?