禁用自动快照
FSx for ONTAP 文件系统中卷的默认快照策略启用了自动快照。如果无需为数据拍摄快照(例如,使用的是测试数据),可以使用 AWS Management Console、AWS CLI 和 API 以及 ONTAP 将卷的快照策略设置为 none
以禁用快照,如以下过程所述。
通过以下网址打开 Amazon FSx 控制台:https://console.aws.amazon.com/fsx/
。 -
导航到文件系统,然后选择要为其更新卷的 ONTAP 文件系统。
-
选择卷选项卡。
-
选择要更新的卷。
-
在操作中,选择更新卷。
系统将显示更新卷对话框,其中包含该卷的当前设置。
-
对于快照策略,选择无。
-
选择更新即可更新卷。
-
使用 update-volume AWS CLI 命令(或等效的 UpdateVolume API 命令)将
SnapshotPolicy
设置为none
,如下例所示。aws fsx update-volume \ --volume-id fsvol-1234567890abcdefa \ --name new_vol \ --ontap-configuration CopyTagsToBackups=true,JunctionPath=/new_vol, \ SizeInMegabytes=2048,SnapshotPolicy=none, \ StorageEfficiencyEnabled=true, \ TieringPolicy=all
设置卷的快照策略,使用 none
默认策略来关闭自动快照。
使用
volume snapshot policy show
ONTAP CLI 命令可显示 none
策略。::>
snapshot policy show -policy none
Vserver: FsxIdabcdef01234567892 Number of Is Policy Name Schedules Enabled Comment ------------------------ --------- ------- ---------------------------------- none 0 false Policy for no automatic snapshots. Schedule Count Prefix SnapMirror Label ---------------------- ----- ---------------------- ------------------- - - - -
-
使用
volume modify
ONTAP CLI 命令将卷的快照策略设置为 none
以禁用自动快照。将以下占位符值替换为您自己的数据:-
- 使用 SVM 的名字。svm_name
- 使用卷名。vol_name
当系统提示继续操作时,请输入
y
。::>
volume modify -vserver
svm_name
-volumevol_name
-snapshot-policy noneWarning: You are changing the Snapshot policy on volume "
vol_name
" to "none". Snapshot copies on this volume that do not match any of the prefixes of the new Snapshot policy will not be deleted. However, when the new Snapshot policy takes effect, depending on the new retention count, any existing Snapshot copies that continue to use the same prefixes might be deleted. See the 'volume modify' man page for more information. Do you want to continue? {y|n}: y Volume modify successful on volumevol_name
of Vserversvm_name
. -