-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Closed
Labels
APIIssues with external APIsIssues with external APIsdistributed frameworkenhancementEnhancement or improvement to existing feature or requestEnhancement or improvement to existing feature or requestgood first issueGood for newcomersGood for newcomers
Description
Describe the bug
Upgrading from OS 2.3.0 to 2.8.0, I am unable to change any cluster setting. All calls result in a 400. For example
PUT /_cluster/settings
{
"persistent" : {
"logger.org.opensearch.index.reindex" : "DEBUG"
}
}results in
{
"error": {
"root_cause": [
{
"type": "illegal_argument_exception",
"reason": "unknown setting [archived.plugins.index_state_management.template_migration.control] did you mean any of [plugins.index_state_management.template_migration.control, opendistro.index_state_management.template_migration.control]?"
}
],
"type": "illegal_argument_exception",
"reason": "unknown setting [archived.plugins.index_state_management.template_migration.control] did you mean any of [plugins.index_state_management.template_migration.control, opendistro.index_state_management.template_migration.control]?"
},
"status": 400
}Host/Environment (please complete the following information):
- OS: Windows
- Version: 2.8.0
Additional context
To eliminate the archived, I had to:
PUT /_cluster/settings
{
"persistent" : {
"archived.plugins.index_state_management.template_migration.control": null
}
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
APIIssues with external APIsIssues with external APIsdistributed frameworkenhancementEnhancement or improvement to existing feature or requestEnhancement or improvement to existing feature or requestgood first issueGood for newcomersGood for newcomers