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?

已提问 1 年前191 查看次数
2 回答
0
已接受的回答

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
专家
已回答 1 年前
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
专家
已回答 1 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则