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 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南