一時設定の移行ガイド

もはや一時的なクラスター設定の使用を推奨しません。一時設定を使用してクラスターに一時的な構成変更を加えることができます。しかし、クラスターの再起動やクラスターの不安定性により、これらの設定が予期せずクリアされる可能性があり、望ましくないクラスター構成につながる可能性があります。

このリスクを回避するために、クラスターで設定した一時設定をリセットしてください。保持したい一時設定は、クラスターの再起動や不安定性を超えて持続する永続設定に変換してください。また、カスタムワークフローやアプリケーションも、一時設定の代わりに永続設定を使用するように更新する必要があります。

一部のElastic製品は、特定の操作を実行する際に一時設定を使用する場合があります。あなた、あなたのユーザー、またはカスタムワークフローやアプリケーションによって設定された一時設定のみをリセットしてください。

一時設定をリセットして変換するには:

Python

  1. resp = client.cluster.get_settings(
  2. flat_settings=True,
  3. filter_path="transient",
  4. )
  5. print(resp)

Ruby

  1. response = client.cluster.get_settings(
  2. flat_settings: true,
  3. filter_path: 'transient'
  4. )
  5. puts response

Js

  1. const response = await client.cluster.getSettings({
  2. flat_settings: "true",
  3. filter_path: "transient",
  4. });
  5. console.log(response);

コンソール

  1. GET _cluster/settings?flat_settings=true&filter_path=transient

APIはtransientオブジェクト内の一時設定を返します。このオブジェクトが空である場合、クラスターには一時設定がなく、残りの手順をスキップできます。

コンソール-結果

  1. {
  2. "persistent": { ... },
  3. "transient": {
  4. "cluster.indices.close.enable": "false",
  5. "indices.recovery.max_bytes_per_sec": "50mb"
  6. }
  7. }
  • 2. クラスター設定更新APIリクエストのpersistentオブジェクトに変換したい設定をコピーします。同じリクエスト内で、null値を割り当てて一時設定をリセットします。

Python

  1. resp = client.cluster.put_settings(
  2. persistent={
  3. "cluster.indices.close.enable": False,
  4. "indices.recovery.max_bytes_per_sec": "50mb"
  5. },
  6. transient={
  7. "*": None
  8. },
  9. )
  10. print(resp)

Ruby

  1. response = client.cluster.put_settings(
  2. body: {
  3. persistent: {
  4. 'cluster.indices.close.enable' => false,
  5. 'indices.recovery.max_bytes_per_sec' => '50mb'
  6. },
  7. transient: {
  8. "*": nil
  9. }
  10. }
  11. )
  12. puts response

Js

  1. const response = await client.cluster.putSettings({
  2. persistent: {
  3. "cluster.indices.close.enable": false,
  4. "indices.recovery.max_bytes_per_sec": "50mb",
  5. },
  6. transient: {
  7. "*": null,
  8. },
  9. });
  10. console.log(response);

コンソール

  1. PUT _cluster/settings
  2. {
  3. "persistent": {
  4. "cluster.indices.close.enable": false,
  5. "indices.recovery.max_bytes_per_sec": "50mb"
  6. },
  7. "transient": {
  8. "*": null
  9. }
  10. }

Python

  1. resp = client.cluster.get_settings(
  2. flat_settings=True,
  3. )
  4. print(resp)

Ruby

  1. response = client.cluster.get_settings(
  2. flat_settings: true
  3. )
  4. puts response

Js

  1. const response = await client.cluster.getSettings({
  2. flat_settings: "true",
  3. });
  4. console.log(response);

コンソール

  1. GET _cluster/settings?flat_settings=true
  1. [](#2ed98be3424f9822f476f92cee85cae9)
  2. #### コンソール-結果
  3. ``````console-result
  4. {
  5. "persistent": {
  6. "cluster.indices.close.enable": "false",
  7. "indices.recovery.max_bytes_per_sec": "50mb",
  8. ...
  9. },
  10. "transient": {
  11. }
  12. }
  13. `