我正在使用AWS备份服务来备份EFS。想知道备份实际存储的位置吗?这是否存储在EFS本身中?我注意到EFS中存储的数据发生了巨大的远足,因此想知道自动备份是否会导致此次加息,我尝试从备份库中删除几个备份恢复点,但没有太大的不同。
事先感谢您的帮助。
I am backing up my EFS using AWS Backup service. Wanted to know where the Backup is actually stored? Is this getting stored in the EFS itself or not? I noticed a huge hike in the data stored in the EFS so wanted to know if the automated backup can be causing this hike or not, I tried deleting few backup recovery points from the backup vault but is not making much of a difference.
Thanks in advance for your help.
发布评论
评论(2)
您的备份未存储在您的EFS本身上。它们存储在
恢复点
中,以备份Vault
。术语恢复点
可与备份
根据 aws 文档。您需要检查您的应用程序等,该应用程序将数据存储在EFS上,或检查EFS本身,添加了导致此次加息的添加的内容。
Your backups are not stored on your EFS itself. They are stored in
Recovery points
in abackup vault
. TermRecovery point
is interchangeable withbackup
according to aws docs.you need to check you application etc which stores data on efs or check efs itself what has been added which has caused this hike.
EFS自动备份和常规EFS备份存储在不同的备份库中。
EFS自动备份库存储在
aws/efs/automatic-backup-vault
Vault中。默认情况下,您将无法从
aws/efs/automatic-backup-vault
保险库中删除EFS自动备份恢复点。如果您想禁用EFS自动备份并删除这些恢复点,则可以按照此文档:
EFS Automatic backups and Regular EFS Backups are stored in different Backup Vaults.
The EFS Automatic backup vaults are stored in
aws/efs/automatic-backup-vault
vault.By default you won't be able to delete the EFS Automatic Backup Recovery Points from
aws/efs/automatic-backup-vault
vault since theAccess policy
is set to deny deletions.If you want to disable EFS Automatic Backups and delete those recovery points you can follow this document:
https://aws.amazon.com/premiumsupport/knowledge-center/efs-disable-automatic-backups/