Hello.
I want to add several replicas for system .kibana index.
I have created template.
PUT _template/kibana
{
"index_patterns": ".kibana*",
"settings": {
"number_of_replicas": "5"
}
}
After first start kibana service i see .kibana_1 or .kibana_2 index, but replica settings didn't assign to this indexes. Index has only 1 replica.
Why template haven't assigned to the index?
What interesting. Some times, after deleting all .kibana indexes and running kibana service .kibana named index created and it has needed settings. But when i reload kibana service .kibana index stay deleted and .kibana_1 index created without right settings.
Thanks in advance for reply.