Skip to content

[BUG] Unable to change any cluster setting: all PUT /_cluster/settings fail with unknown setting [archived...] on an unrelated parameter #8714

@AMoo-Miki

Description

@AMoo-Miki

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
  }
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions