How to enable compatibility mode on existing Opensearch domain

0

Is it possible to to enable compatibility mode on existing Opensearch domain? I found this article https://docs.aws.amazon.com/opensearch-service/latest/developerguide/rename.html and added in the cluster settings which has changed the master nodes but not the data nodes. I tried scaling the nodes up but they still report the opensearch version number instead of the equivalent Elasticsearch version.

Rudi-k
asked 2 years ago6849 views
2 Answers
0

Hi there, yes running the following command will enable compatibility mode in existing OpenSearch domain

PUT /_cluster/settings
{
  "persistent" : {
    "compatibility.override_main_response_version" : true
  }
}

If this is already executed, to verify if compatibility mode is enabled, run following command to list all current settings

GET _cluster/settings?include_defaults=true

And look for following section to see if compatibility mode is enabled.

"compatibility" : {
      "override_main_response_version" : "true"
    }

If you are not able to enable the setting, please open a Support case with AWS OpenSearch so that a proper solution can be provided upon looking into other resources.

AWS
SUPPORT ENGINEER
answered 2 years ago
0

I am able to edit these settings but they only effect the master services and not the nodes. The nodes are what Kibana checks for compatiblity.

Rudi-k
answered 2 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions