Creating a replication relationship
The relationship between the source volume in primary storage and the destination volume in secondary storage is called a data protection relationship. You can use the snapmirror create command to create SnapMirror DR, SnapVault, or unified replication data protection relationships.
Before you begin
The source and destination clusters and SVMs must be peered.
The language on the destination volume must be the same as the language on the source volume.
About this task
With improvements in performance, the significant benefits of version-flexible SnapMirror outweigh the slight advantage in replication throughput obtained with version-dependent mode. For this reason, starting with ONTAP 9.5, XDP mode has been made the new default, and any invocations of DP mode on the command line or in new or existing scripts are automatically converted to XDP mode.
Existing relationships are not affected. If a relationship is already of type DP, it will continue to be of type DP. The table below shows the behavior you can expect.
If you specify... | The type is... | The default policy (if you do not specify a policy) is... |
---|---|---|
DP | XDP | MirrorAllSnapshots (SnapMirror DR) |
Nothing | XDP | MirrorAllSnapshots (SnapMirror DR) |
XDP | XDP | XDPDefault (SnapVault) |
See also the examples in the procedure below.
The only exceptions to conversion are as follows:
- SVM data protection relationships continue to default to DP mode.
Specify XDP explicitly to obtain XDP mode with the default MirrorAllSnapshots policy.
Load-sharing data protection relationships continue to default to DP mode.
SnapLock data protection relationships continue to default to DP mode.
Explicit invocations of DP continue to default to DP mode if you set the following cluster-wide option:
options replication.create_data_protection_rels.enable on
This option is ignored if you do not explicitly invoke DP.
In ONTAP 9.5 and later, a destination volume can contain up to 1019 Snapshot copies.
Starting with ONTAP 9.5, SnapMirror Synchronous relationships are supported.
Example
The following example creates a SnapMirror DR relationship using the default MirrorLatest policy:
cluster_dst::> snapmirror create -source-path <span className="ph">svm1:volA</span> -destination-path svm_backup:volA_dst -type XDP -schedule my_daily -policy MirrorLatest
Example
The following example creates a SnapVault relationship using the default XDPDefault policy:
cluster_dst::> snapmirror create -source-path svm1:volA -destination-path svm_backup:volA_dst -type XDP -schedule my_daily -policy XDPDefault
Example
The following example creates a unified replication relationship using the default MirrorAndVault policy:
cluster_dst:> snapmirror create -source-path <span className="ph">svm1:volA</span> -destination-path svm_backup:volA_dst -type XDP -schedule my_daily -policy MirrorAndVault
Example
The following example creates a unified replication relationship using the custom my_unified policy:
cluster_dst::> snapmirror create -source-path <span className="ph">svm1:volA</span> -destination-path svm_backup:volA_dst -type XDP -schedule my_daily -policy my_unified
Example
The following example creates a SnapMirror Synchronous relationship using the default Sync policy:
cluster_dst::> snapmirror create -source-path svm1:volA -destination-path svm_backup:volA_dst -type XDP -policy Sync
Example
The following example creates a SnapMirror Synchronous relationship using the default StrictSync policy:
cluster_dst::> snapmirror create -source-path svm1:volA -destination-path svm_backup:volA_dst -type XDP -policy StrictSync
Example
The following example creates a SnapMirror DR relationship. With the DP type automatically converted to XDP and with no policy specified, the policy defaults to the MirrorAllSnapshots policy:
cluster_dst::> snapmirror create -source-path svm1:volA -destination-path svm_backup:volA_dst -type DP -schedule my_daily
Example
The following example creates a SnapMirror DR relationship. With no type or policy specified, the policy defaults to the MirrorAllSnapshots policy:
cluster_dst::> snapmirror create -source-path svm1:volA -destination-path svm_backup:volA_dst -schedule my_daily
Example
The following example creates a SnapMirror DR relationship. With no policy specified, the policy defaults to the XDPDefault policy:
cluster_dst::> snapmirror create -source-path svm1:volA -destination-path svm_backup:volA_dst -type XDP -schedule my_daily
Example
The following example creates a SnapMirror Synchronous relationship with the predefined policy SnapCenterSync :
cluster_dst::> snapmirror create -source-path svm1:volA -destination-path svm_backup:volA_dst -type XDP -policy SnapCenterSync
After you finish
Use the snapmirror show command to verify that the SnapMirror relationship was created. For complete command syntax, see the man page.