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
질문됨 2년 전6941회 조회
2개 답변
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
지원 엔지니어
답변함 2년 전
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
답변함 2년 전

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인