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?

posta un anno fa191 visualizzazioni
2 Risposte
0
Risposta accettata

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
ESPERTO
con risposta un anno fa
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
ESPERTO
con risposta un anno fa

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.

Linee guida per rispondere alle domande