Skip to main content
本繁體中文版使用機器翻譯,譯文僅供參考,若與英文版本牴觸,應以英文版本為準。

建立FlexGroup 統一化的資料保護關係、以利實現功能

貢獻者

從ONTAP 使用支援功能支援功能9.3開始、您可以建立及設定SnapMirror統一化資料保護關係、以便在同一個目的地磁碟區上設定災難恢復與歸檔。

您需要的產品

您必須瞭解建立FlexGroup 統一化資料保護關係以利建立有關本區的考量。

步驟
  1. 建立類型的目的地 FlexGroup Volume DP 其組成數量與來源 FlexGroup Volume 的組成數量相同:

    1. 從來源叢集中、判斷來源 FlexGroup Volume 中的組成數量: volume show -volume volume_name* -is-constituent true

      cluster1::> volume show  -volume srcFG* -is-constituent true
      Vserver   Volume         Aggregate    State      Type       Size  Available  Used%
      --------- ------------   ------------ ---------- ---- ----------  ---------- -----
      vss       srcFG          -            online     RW         400TB   172.86GB  56%
      vss       srcFG__0001    Aggr_cmode   online     RW         25GB    10.86TB   56%
      vss       srcFG__0002    aggr1        online     RW         25TB    10.86TB   56%
      vss       srcFG__0003    Aggr_cmode   online     RW         25TB    10.72TB   57%
      vss       srcFG__0004    aggr1        online     RW         25TB    10.73TB   57%
      vss       srcFG__0005    Aggr_cmode   online     RW         25TB    10.67TB   57%
      vss       srcFG__0006    aggr1        online     RW         25TB    10.64TB   57%
      vss       srcFG__0007    Aggr_cmode   online     RW         25TB    10.63TB   57%
      ...
    2. 從目的地叢集建立類型的目的地 FlexGroup Volume DP 其組成數量與來源 FlexGroup Volume 相同。

      cluster2::> volume create -vserver vsd -aggr-list aggr1,aggr2 -aggr-list-multiplier 8 -size 400TB -type DP dstFG
      
      Warning: The FlexGroup volume "dstFG" will be created with the following number of constituents of size 25TB: 16.
      Do you want to continue? {y|n}: y
      [Job 766] Job succeeded: Successful
    3. 從目的地叢集、確認目的地 FlexGroup Volume 中的組成數量: volume show -volume volume_name* -is-constituent true

      cluster2::> volume show  -volume dstFG* -is-constituent true
      Vserver   Volume       Aggregate    State      Type       Size  Available Used%
      --------- ------------ ------------ ---------- ---- ---------- ---------- -----
      vsd       dstFG          -            online     RW         400TB   172.86GB  56%
      vsd       dstFG__0001    Aggr_cmode   online     RW         25GB    10.86TB   56%
      vsd       dstFG__0002    aggr1        online     RW         25TB    10.86TB   56%
      vsd       dstFG__0003    Aggr_cmode   online     RW         25TB    10.72TB   57%
      vsd       dstFG__0004    aggr1        online     RW         25TB    10.73TB   57%
      vsd       dstFG__0005    Aggr_cmode   online     RW         25TB    10.67TB   57%
      vsd       dstFG__0006    aggr1        online     RW         25TB    10.64TB   57%
      vsd       dstFG__0007    Aggr_cmode   online     RW         25TB    10.63TB   57%
      ...
  2. 建立工作排程: job schedule cron create -name job_name -month month -dayofweek day_of_week -day day_of_month -hour hour -minute minute

    適用於 -month-dayofweek`和 `-hour 選項、您可以指定 all 每個月、每週的每一天、每小時執行一次工作。

    以下範例建立名為的工作排程 my_weekly 週六上午 3 : 00 開始:

    cluster1::> job schedule cron create -name my_weekly -dayofweek "Saturday" -hour 3 -minute 0
  3. 建立類型的自訂原則 mirror-vault, 然後定義鏡射和資料保險箱原則的規則 :

    1. 建立類型的自訂原則 mirror-vault 針對統一化的資料保護關係: snapmirror policy create -vserver svm_name -policy policy_name -type mirror-vault

    2. 定義鏡射和資料保險箱原則的規則、以決定在初始化和更新作業期間傳輸哪些 Snapshot 複本: snapmirror policy add-rule -vserver svm_name -policy policy_for_rule - snapmirror-label snapmirror-label -keep retention_count -schedule schedule

    如果您未指定自訂原則、請使用 MirrorAndVault 原則用於統一化資料保護關係。

  4. 建立統一化的資料保護關係: snapmirror create -source-path src_svm:src_flexgroup -destination-path dest_svm:dest_flexgroup -type XDP -schedule schedule_name -policy MirrorAndVault

    在 ONTAP 9.4 及更早版本中、如果原則未使用指定 snapmirror create 命令 MirrorAllSnapshots 原則預設為使用。在 ONTAP 9.5 中、如果原則未使用指定 snapmirror create 命令 MirrorAndVault 原則預設為使用。

    cluster2::> snapmirror create -source-path vss:srcFG -destination-path vsd:dstFG -type XDP -schedule Daily -policy MirrorAndVault
  5. 從目的地叢集執行基準傳輸、以初始化統一化資料保護關係: snapmirror initialize -destination-path dest_svm:dest_flexgroup

    cluster2::> snapmirror initialize -destination-path vsd:dstFG
    Operation is queued: snapmirror initialize of destination "vsd:dstFG".