ONTAP 9.13

to English version

FabricPoolミラーを使用した既存のオブジェクトストアの置き換え

FabricPoolミラー テクノロジを使用して、あるオブジェクトストアを別のオブジェクトストアに置き換えることができます。新しいオブジェクトストアは元のオブジェクトストアと同じクラウド プロバイダーを使用している必要はありません。

タスク概要

別のクラウド プロバイダーを使用するオブジェクトストアで置き換えることができます。たとえば、AWSをクラウド プロバイダーとして使用しているオブジェクトストアがAzureを使用するオブジェクトストアに置き換えることも、その逆も可能です。ただし、オブジェクト サイズは新しいオブジェクトストアと元のオブジェクトストアで同じである必要があります。

手順
  1. storage aggregate object-store mirror コマンドを使用して、既存のFabricPoolに新しいオブジェクトストアを追加することでFabricPoolミラーを作成します。

    cluster1::> storage aggregate object-store mirror -aggregate aggr1 -name my-AZURE-store
  2. storage aggregate object-store show-resync-status コマンドを使用して、ミラー再同期ステータスを監視します。

    cluster1::> storage aggregate object-store show-resync-status -aggregate aggr1
                                                      Complete
          Aggregate    Primary          Mirror        Percentage
          ---------    -----------      ----------    ----------
          aggr1        my-AWS-store     my-AZURE-store     40%
  3. storage aggregate object-store> show -fields mirror-type,is-mirror-degraded コマンドを使用して、ミラーが同期されていることを確認します。

    cluster1::> storage aggregate object-store show -fields mirror-type,is-mirror-degraded
    aggregate      object-store-name mirror-type     is-mirror-degraded
    -------------- ----------------- ------------- ------------------
    aggr1          my-AWS-store        primary           -
                   my-AZURE-store      mirror          false
  4. storage aggregate object-store modify コマンドを使用して、プライマリー オブジェクトストアをミラー オブジェクトストアと交換します。

    cluster1::> storage aggregate object-store modify -aggregate aggr1 -name my-AZURE-store -mirror-type primary
  5. storage aggregate object-store show -fields mirror-type,is-mirror-degraded コマンドを使用して、FabricPoolミラーに関する詳細を表示します。

    次の例はFabricPoolミラーに関する情報を表示したもので、ミラーがデグレード状態(同期されていない状態)になっているかどうかも含まれます。

    cluster1::> storage aggregate object-store show -fields mirror-type, is-mirror-degraded
    aggregate      object-store-name mirror-type     is-mirror-degraded
    -------------- ----------------- ------------- ------------------
    aggr1          my-AZURE-store      primary           -
                   my-AWS-store        mirror          false
  6. storage aggregate object-store unmirror コマンドを使用して、FabricPoolミラーを削除します。

    cluster1::> storage aggregate object-store unmirror -aggregate aggr1
  7. storage aggregate object-store show -fields mirror-type,is-mirror-degraded コマンドを使用して、FabricPoolが単一オブジェクトストア構成に戻っていることを確認します。

    cluster1::> storage aggregate object-store show -fields mirror-type,is-mirror-degraded
    aggregate      object-store-name mirror-type     is-mirror-degraded
    -------------- ----------------- ------------- ------------------
    aggr1          my-AZURE-store      primary           -
Top of Page