Versions (relevant - OpenSearch/Dashboard/Server OS/Browser):
1.2.4
Describe the issue:
I installed opensearch with index_management enabled. I have few indices in my cluster, all indices were in green state and i do not have this parameter
“plugins” : {
“index_state_management” : {
“auto_manage” : “false”
}
in any of the index setting.
Later i restarted opensearch ,then i got that setting in 2 of the indices.
This setting is causing problem when i rollback to Opensearch version where i disabled ISM. Those 2 indices are in red state after rollback.
Can anyone please help if there is any way we can delete this particular parameter from the index setting?
Relevant Logs or Screenshots:
bash-4.4$ esRest GET /logs-2024.02.01/_settings?pretty
{
“logs-2024.02.01” : {
“settings” : {
“index” : {
“refresh_interval” : “1s”,
“number_of_shards” : “5”,
“plugins” : {
“index_state_management” : {
“auto_manage” : “false”
}
},
“provided_name” : “logs-2024.02.01”,
“creation_date” : “1706785252346”,
“unassigned” : {
“node_left” : {
“delayed_timeout” : “3m”
}
},
“number_of_replicas” : “1”,
“uuid” : “QUU-DLtrTMSf20sN0aHQkL”,
“version” : {
“created” : “135238227”
}
}
}
}
}