tl;dr
I cannot change the "number_of_replicas" for my .opendistro-ism-managed-index-history* indices despite changing this setting in the corresponding index template.
Hi, all. I'm having some difficulties with changing the replica count in the index template that is responsible for generating my .opendistro-ism-managed-index-history* indices. I don't have this issue with the "wazuh" or "wazuh-agent" index templates, as I have been able to easily change the "number_of_replicas" using a simple PUT request.
I created the following index template that should change the replica count of the .opendistro-ism-managed-index-history* indices:
PUT _index_template/ism_history_indices
{
"index_patterns": [
".opendistro-ism-managed-index-history-*"
],
"template": {
"settings": {
"number_of_replicas": 6
}
}
}
However, when I view the most recent .opendistro-ism-managed-index-history* indices, the replica count has not changed to my desired value of 6.
Any help is appreciated. Thank you!