DEV Community

Cover image for Cheap and reliable archiving with Amazon Glacier
Guilherme Garnier
Guilherme Garnier

Posted on • Originally published at blog.guilhermegarnier.com

Cheap and reliable archiving with Amazon Glacier

Originally posted in Guilherme Garnier blog.

Incidents like WannaCry ransomware expose the importance of doing backups, which is usually forgotten by many people.

When someone talks about backing up our personal files, we usually think about services like Dropbox and Google Drive. But they have a reasonable cost if you have more than a couple of GB of data. There are a lot of other solutions available. Most of them are cheaper, but not always reliable - imagine if you backup all your personal data to a small and unknown service, and a few months later, the company breaks. Or a security flaw exposes all your personal data! Of course this could also happen with Dropbox and Google Drive, but it's much less likely, being two large and serious companies.

One alternative to them is Amazon Glacier. It's a not so popular Amazon service for data archiving. You should notice it works differently from the usual backup solutions. When you sign up to Dropbox, for instance, you can install an app to your computer or mobile phone, or use the web interface to instantly access your files and upload new ones. Glacier is much more low level. It doesn't have a web interface, app or even command line tool! There's only an API, which you use to check your files, download or upload.

And there's more: the download and upload rates are very slow. And to download a file, you first have to ask for a file retrieval job; the download will be available in a couple of hours!!!

This seems like a terrible service, so why use it? Because it's very, very cheap! You only pay US$ 0.004 per GB per month for storage, besides additional costs for requests. And even being slow and hard to use, it's a service offered by Amazon, which gives you confidence it won't suddenly disappear.

Having said that, Glacier isn't a service to keep data you may need immediately. But it's ideal for something you probably won't need to access anytime soon. Think about your family pictures: when you want to access them, you probably doesn't need them right away; you're fine waiting a couple of hours for that.

Glacier is also a great option for "backups of backups". If you want to be neurotic about backups (and you should!), you can archive a copy of your backups there.

Usage

The easiest way to use Glacier is with a third party client. I like amazon-glacier-cmd-interface. After setting up the basic configuration, you can create a vault and upload you files:

$ glacier-cmd mkvault my-disaster-backup
$ glacier-cmd upload my-disaster-backup my-file1 my-file2 ...
Enter fullscreen mode Exit fullscreen mode

To list archives in a vault:

$ glacier-cmd inventory <vaultname>
Enter fullscreen mode Exit fullscreen mode

The inventory retrieval job takes a couple of hours to be processed. You can check its status with:

$ glacier-cmd listjobs <vaultname>
+------------------------------------------------------+---------------+--------------+--------------------+--------------------------+------------+
|                      VaultARN                        |    Job ID     | Archive ID   |       Action       |        Initiated         |   Status   |
+------------------------------------------------------+---------------+--------------+--------------------+--------------------------+------------+
| arn:aws:glacier:us-west-2:483413266890:vaults/backup | QYqdvM4k8q... |    None      | InventoryRetrieval | 2017-07-24T15:47:48.310Z | InProgress |
+------------------------------------------------------+---------------+--------------+--------------------+--------------------------+------------+
Enter fullscreen mode Exit fullscreen mode

When the job status change to Succeeded, run the inventory command again to check the archive list.

To download an archive, first you need to check its id in the inventory:

$ glacier-cmd inventory <vaultname>
Inventory of vault: arn:aws:glacier:us-west-2:483413266890:vaults/backup
Inventory Date: 2017-07-05T11:22:15Z

Content:
+---------------+---------------------+----------------------+------------------+------------+
|  Archive ID   | Archive Description |       Uploaded       | SHA256 tree hash |    Size    |
+---------------+---------------------+----------------------+------------------+------------+
| uFg2FE_guu... | file1.tar.gz        | 2017-03-31T14:29:17Z | b41922e1a2...    | 1342622251 |
| 43Wjk63Dcu... | file2.tar.gz        | 2017-03-31T17:18:28Z | 2346170d22...    | 2347810677 |
+---------------+---------------------+----------------------+------------------+------------+
This vault contains 2 items, total size 2.5 GB.
Enter fullscreen mode Exit fullscreen mode

Then, create an archive retrieval job using the archive id:

$ glacier-cmd getarchive <vaultname> <archive id>
+-----------+---------------+
|   Header  |    Value      |
+-----------+---------------+
|   JobId   | Xa17IAadQG... |
| RequestId | cPcomv_vTf... |
+-----------+---------------+
Enter fullscreen mode Exit fullscreen mode

When the download is available (you can check its status with glacier-cmd listjobs <vaultname>), download it with:

$ glacier-cmd download <vaultname> <archive id> --outfile <filename>
Enter fullscreen mode Exit fullscreen mode

Top comments (4)

Collapse
 
miqubel profile image

Warning, Glacier has a high retrieval costs that is hard to calculate for newbie users.

I used Glacier to store my raw photo files, and one day I decided to download circa 100 GB of them. Huge mistake, I paid 140 euros on fees.

Putting up lots of stuff to glacier is cheap, but taking it back at once was very, VERY, expensive. Don't use Glacier for stuff that you might want to get all at once, or you will make the same mistake I did.

See: quora.com/What-is-the-hidden-cost-...

Collapse
 
ggarnier profile image
Guilherme Garnier

Thanks for this information, I was not aware of this. I use Glacier for quite some time, but I only needed to retrieve data from it a couple of times, about 1 GB each, so the costs were negligible.

Collapse
 
ben profile image
Ben Halpern

Thanks for this

Collapse
 
fribenyah profile image
Friben Yah

I've never heard of Amazon glacier,but hearing this tidbit of it will prove to be useful in the future when I need to save important,but not readily needed,info.