Is it possible to move EC2 volumes to Amazon Glacier without having to download and upload it?

后端 未结 1 994
余生分开走
余生分开走 2020-12-17 10:58

I am trying to reduce costs of my AWS system. I thought of moving some volumes I rarely use to Amazon Glacier, but I don\'t find any way I can do it inside AWS besides downl

相关标签:
1条回答
  • 2020-12-17 11:18

    EBS volumes cannot be copied or migrated to Amazon Glacier.

    EBS snapshots, even though they are stored in Amazon S3, also cannot be moved to Amazon Glacier.

    There are 2 ways to put data into Amazon Glacier:

    1. Put the file/data directly into an Amazon Glacier vault.
    2. Put the file/data in Amazon S3, then use an Amazon S3 lifecycle to move the object(s) to Amazon Glacier.

    You could use aws s3 sync to copy your filesystem into S3, then have that moved to Glacier. But there is no magic solution for what you want to achieve.

    0 讨论(0)
提交回复
热议问题