Tag Archives: S3

Google Storage for Developers: An Attempt to Compete With S3?

I just happened upon an interesting new Labs service from Google: Google Storage for Developers. It’s very much like Amazon S3 in concept, but from Google. It’s a cheap, pay-as-you-go file storage service that could be used for anything from backing up data to hosting podcasts to serving images.

Google Storage for Developers will cost $0.17 per gigabyte per month for storage, plus transfer fees. It seems slightly more expensive for the month-to-month fee, but the bandwidth charges might be cheaper. For the duration of the preview Google is offering “100 gigabytes of storage and 300 gigabytes of bandwidth per month” at no cost.

It’s also worth noting that Google offers App Engine, a cost-efficient cloud hosting solution for Python/Rails/Java applications. Amazon has a similar service as part of their impressive AWS suite. With either provider, Google or Amazon, you could cheaply run a large web application more efficiently than if you were having to manually deploy physical servers. Reddit awhile ago switched from running their own servers to using AWS and has had nothing but good things to say about it.

It’s nice to see some more competition in this area. Hopefully it will lead to lower prices. :)

Arq: Back Up Your Mac to Amazon S3

I use some shell scripts to back up my web server to Amazon S3. It’s very cheap and off-site, two things that make for a good backup strategy. But what about personal computers? Most people, myself included, simply back up to external hard disk. Off-site backups stored “in the cloud” on remote servers would be a much preferable option. (But most people balk at paying $5-$20 per month for a service like Dropbox, JungleDisk, SpiderOak or Carbonite.)

Arq, by Haystack Software, takes a slightly different approach. It’s designed for those of us who already have Amazon S3 accounts. Arq lets you set a monthly budget, say $5 (which gets you 50GB or storage). The application then keeps the folders you choose mirrored with Amazon S3. It operates on the same hourly schedule as Time Machine, keeping multiple versions of the files. It periodically deletes old versions of the files to stay within the storage space equivalent to the monthly budget you set. It even encrypts your files with a passkey of your choosing.

If you’re selective about the data you back up, the pricing should be fairly reasonable. It seems like a good way to back up data. You could use it in tandem with Dropbox; Arq+S3 for backing up your critical data, Dropbox for sharing and collaborating.

Further Reading

Transmit 4: The Ultimate Mac FTP and S3 Client

Panic Inc has released version four of their popular Transmit FTP client. To simply call it an “FTP client,” though, doesn’t do the software justice. Really, it’s a file transfer application. It can interact with FTP and SFTP servers as well as Amazon S3, Apple iDisk, WebDAV servers, and Bonjour locations. Not only can Transmit move files between your computer and a remote server, but it can easily transfer data between servers.

Continue reading →

Amazon S3: A Cheap Podcast Host?

Podcasts are fun to create, but they can be expensive to host. Typically they’re larger than 10 megabytes, and when you have a thousand plus people downloading each of your weekly episodes, your bandwidth bill can get pretty large. (They can also eat up a lot of your server’s disk space.)

Many podcasters, rather than pay for ever-increasing amounts of bandwidth, use podcast syndication services like Libsyn to host their shows. Libsyn charges $12/month for unmetered bandwidth, and a monthly upload quota of 250MB. (There are a few other pricing tiers they offer, but the “libsyn250″ is probably the one most weekly hour-length podcasts will require.)

There’s another option, though.

Amazon S3 is a neat service that allows you to “pay as you go,” and host your files on Amazon’s speedy cloud servers. They charge $0.15 per gigabyte in bandwidth, as well as a monthly $0.15/GB storage fee.

I’ve been using Amazon S3 for off-site storage of my server backups for awhile, and it recently occurred to me that would be a great place to host podcast files.

If your subscribers were to download 20GB worth of podcast files in a month, for example, you would pay a mere $3. (You would technically have to pay a little more for the storage of the files, but it probably wouldn’t even be another dollar.)

If you coupled it with Amazon’s CloudFront service, a CDN that pulls from your S3 account, you could help speed up your subscribers’ downloads. (A CDN, in case you were wondering, is a service that mirrors your files across servers in different geographic locations, to ensure that your users are downloading from a nearby server.) It costs the same $0.15/per gigabyte, minus the silly “thousandth of a cent” HTTP request charges.

I wonder how many podcasters are using Amazon Web Services. It seems like a fairly affordable, and certainly reliable, option.

Automatic Amazon S3 Backups on Ubuntu/Debian

If you manage your own web server, as you do with a VPS, one thing you need to look into is a backup strategy. It wouldn’t be pleasant for your files to vanish into the ether in the event of some sort of catastrophic server meltdown, would it? Optimally you want to, on a daily basis, offload a copy of everything important to a separate geographical location. One excellent way to do that is to follow Pro Blog Design’s new tutorial on how to automatically back up your files and databases to Amazon S3.

S3, or Simple Storage Service, is Amazon’s cheap cloud data storage system. Michael Martin, the author of the tutorial, says that his bill from last month was $2.60. ($0.15 per month per GB for stored, $0.15 per GB transferred.) Using a backup script on your server, you can automatically archive and encrypt your files and MySQL dumps, then send them off to Amazon’s servers for safekeeping.

I should start by saying that while s3 is not a free service, it’s incredibly inexpensive! My bill for the last month was $2.60, and that was with backing up a lot more than just this site! It’s the cheapest peace-of-mind ever.

Automatic Amazon S3 Backups on Ubuntu/Debian [Pro Blog Design]