Reputation: 61
How do I transfer my s3 buckets to the s3 glacier for cost reduction. I have buckets with TB of data that is frequently not used, but want all that data to be stored in some cost reduction platform so that I can access the data very rarely. I have seen that s3 glacier is less cost comparing to the s3 storage.
Upvotes: 0
Views: 1275
Reputation: 269091
There are multiple storage classes available in Amazon S3. Details are available at: Amazon S3 Simple Storage Service Pricing - Amazon Web Services
See: Amazon S3 Glacier and S3 Glacier Deep Archive - AWS Prescriptive Guidance
The easiest way to transition objects to S3 Glacier or other storage classes is to use Object lifecycle management - Amazon Simple Storage Service. Just give it some rules (eg which folder) and it will transition the data. This does incur costs, so make sure you understand the Amazon S3 Simple Storage Service Pricing.
Upvotes: 2