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
demandé il y a 2 ans6941 vues
2 réponses
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
INGÉNIEUR EN ASSISTANCE TECHNIQUE
répondu il y a 2 ans
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
répondu il y a 2 ans

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions