Amazon OpenSearch ServiceでDisable autotuneを行う

2023/10/03に公開

Amazon OpenSearch Serviceの開発用のドメインにおいて、インスタンスタイプをt3.small.searchからt3.medium.searchに変更しようとしたところ、以下のメッセージが表示されました。

Autotune is not supported in t2/t3 instance types. Disable autotune or change your instance type.

UI上ではAutotuneに関する項目を見つけることができずに困っていたところ、以下のページにCLIを使う方法が記載されていました。

https://docs.aws.amazon.com/opensearch-service/latest/developerguide/auto-tune.html#auto-tune-enable

そこで、以下を実行しました。

aws opensearch update-domain-config \
  --domain-name my-domain \
  --auto-tune-options DesiredState=DISABLED

その上で、再度インスタンスタイプを変更したところ、無事に変更することができました。

Autotuneの機能を無効化する、または使用しないことのデメリットなどを十分に把握できていませんが、同様のことでお困りの方の参考になりましたら幸いです。

Discussion