Starting with Deep Glacier.

0

I have 5 Terabytes of information that I want to backup in AWS deep Glacier. I hope to never download them, just wishing to archive them in the cloud besides physical disks. Is there a way to Uoload it directly from S3?

asked a year ago188 views
2 Answers
0
Accepted Answer

Reading the question a little differently. If that data is on your local disk, you can copy objects directly to any storage class in S3 by using the command line. This avoids any charges by storing the objects other storage classes for a period of time.

For example:

aws s3 cp <source file> s3://<bucket name>/path/ --storage-class DEEP_ARCHIVE

profile pictureAWS
EXPERT
answered a year ago
0

Yes, you can upload data directly from Amazon S3 to Amazon S3 Glacier using a lifecycle policy that transitions objects from S3 to Glacier.

To do this, you can create a S3 bucket and upload the 5TB of data to this bucket. Then, you can create a lifecycle policy to transition these objects to S3 Glacier. When you create the policy, you can specify a rule to transition the objects from S3 to S3 Glacier based on the object age, object size, or both.

Here's an example of a lifecycle policy

{
  "Rules": [
    {
      "ID": "Archive to Glacier",
      "Status": "Enabled",
      "Filter": {
        "Prefix": ""
      },
      "Transitions": [
        {
          "Days": 30,
          "StorageClass": "GLACIER"
        }
      ]
    }
  ]
}

Once the objects are transitioned to S3 Glacier, you can view them in the S3 Glacier console or retrieve them using the AWS CLI or SDK.

profile picture
EXPERT
answered a year ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions