Hy,
I have a ES cluster running 1.6.0, consisting of 10 nodes.
2 of them are new nodes in this cluster, with small number of shards( hundreds).
The other 8 nodes have thousands of shards.
The problem is that when a new index (I create indexes with 10 shards and 0 replicas), all shards from the newly index goes to those 2 nodes and I want to distribute equally in the cluster. (This means one shard/node).
I tried without luck the following settings:
"persistent": {"cluster": {"routing": {"allocation": {"balance": {"index": "0.7","shard": "0.3"}}}}}
"persistent": {"cluster": {"routing": {"allocation": {"balance": {"index": "0.8","shard": "0.2"}}}}}
"persistent": {"cluster": {"routing": {"allocation": {"balance": {"index": "2","shard": "0.1"}}}}}
How can I do this?
Thank you,