How can I increase the number of shard replicas? I have five nodes in the cluster, I want each node to have a copy of each shards.
I found this option on the net, is it correct?
curl -X PUT http://localhost:9200/_template/default -H 'Content-Type: application/json' -d '{"index_patterns": ["*"],"order": -1,"settings": {"number_of_shards": "1","number_of_replicas": "5"}}'