I have a cluster containing 7 nodes, I've recently noticed that we are only using 5 primary shards, meaning that per index - we are only utilizing 5 nodes out of 7. I would like to add two additional primary shards for newly created indices.
I've added the following to elasticsearch.yml and restarted the cluster:
index.number_of_shards: 7 index.number_of_replicas: 0
However, it's been a few days and a few new indices since - and I still see its sharding to 5 pieces.. can anyone explain why? am I missing some additional configuration here?
Thanks!