With the newly released Marvel from ElasticSearch I wanted to ask the question whether we could adjust the amount of replicas it creates upon creating an index, that is every time it creates an index. It currently creates one primary and one replica shard. Can this be adjusted permanently?
Thanks
Update for Replicas
curl -XPUT localhost:9200/_template/marvel_custom -d '
{
"order" : 1,
"template" : ".marvel*",
"settings" : {
"number_of_replicas" : 0
}
}'