Ask HN: Explain AWS

50 points by gsmaverick ↗ HN
Ok, so I might be completely missing something here, but bear with me. I want to use AWS to build my service. But I am a bit perplexed when it comes to storage. If I have MySQL running where do the database files get stored? Does each EC2 instance come with a certain amount of storage? Would be glad if someone explained this for me :)

33 comments

[ 6.1 ms ] story [ 96.4 ms ] thread
Every EC2 instance has about 150GB of transient disk space. It works like a regular disk but once you shutdown the instance (or in the rare event the instance fails) the disk is gone forever. To solve this problem, Amazon provides EBS volumes ("elastic block storage"). These are like raw disks that you can create on the fly. You create one, attach it to your instances, give it a filesystem, and then mount it.

You can run MySQL off of the transient disk ("/mnt") but you should consider running it off of an EBS volume. One reason is because you won't lose the disk if something happens to the instance. Another is that you can use the snapshots feature to create instant backups of your database. Later on you can create new EBS volumes from a snapshot (which is really cool for building a stage environment with production data).

This may sound a bit complicated when you're just starting out. It was for me anyway so after working with AWS for a couple years I started working on a development and deployment tool for EC2. The configuration is entirely via a Ruby DSL.

You define the properties of your environments and roles with the machines DSL (including EBS volumes) and you script your repeatable processes (like deployments) with the routines DSL:

http://github.com/solutious/rudy/blob/0.7/Rudyfile

If Python is more your style, there's boto: http://code.google.com/p/boto/

Thanks for your reply. I now understand how it all works.
That's a dangerous statement ;-)
I've found it easier to think of an EC2 image's 150GB of 'disk' as RAM, and Elastic Block as an actual hard drive. EC2's disk is there when it's powered on, but when you turn it off, all data disappears. Elastic block is really EC2's hard drive.

Two issues that burned me a couple of months ago with EC2 and Elastic Block:

I built my server and got it running just right. I then wanted to back it up, so I bundled it (save your instance to S3) but forgot to register it(list your S3 bundle as a privately available AMI). When I terminated my instance I wasn't able to restart it, because it wasn't available in my list of registered AMI's. I had to rebuild my server from scratch.

The second problem that I had was in rebuilding my database after my instance terminated. Postgres keeps the log files (transactions the database has completed) in the install folder and the data file(what the database has stored) in the storage folder. When I terminated my instance, I lost all the log files that were stored on the EC2 'disk'. I had the data file on elastic block, but the log files were gone. The standard recovery process for postgres needs log files.

It took me a day to figure out how to rebuild the database from just the data files. I now have both the database and the log files on my elastic block image. Hopefully that will help the next time I kill my server. :) I also now have automated backups of everything.

Ya, getting burned by EC2 is a rite of passage. I learned my lesson with Amazon's API tools. Dealing with IDs is cumbersome and dangerous when it comes to production instances. Automation is a necessity.

How are you running your automated backups? Have you automated deployment too?

1- thx for the ruby dsl link -- I hadn't heard of it, and I can't understand why

2- the problem with using EBS comes when you have a larger DB, like, oh, 80GB or so. It takes no less than 6-8 hours to produce a snapshot of that -- I just tried it. You can do a simple rsync to another instance in like 2-3 hours. I want to like EBS but it seems ... slow.

I've used EC2 for running web servers as well as database server with the db servers being replicated to rackspace for backup.

I have always wondered about how EBS as disk will affect database as it is essentially a network drive. Any info on that would be great.

Yes, does anybody have data on latency and throughput of EBS "disks"?
I ran a few preliminary EC2 disk benchmarks in September: http://solutious.com/blog/2008/09/23/ec2-disk-performance-li...

The Solaris performance was really poor compared to Linux. I emailed Sun and initially they were really receptive but never explained what was happening. I'm hoping to re-run the tests again soon to see if the latest OpenSolaris (2008-11) has improved.

Have used ec2 and s3 for a while now in a production context. While there may be cheaper services out there, we've appreciated the ability to scale up and down rapidly, build test environments, etc. It really depends on where you are at in the cycle of a project. If you are running MySQL, and want high availability, you likely want replication, which means multiple instances no matter what provider you choose. With replication, the fact that your disk is transient isn't as big of a deal. The way I look at AWS is that it nudges you in the right direction as far as building reliable, scalable systems.

As far as EBS, another thing to think about is instance types. Since EBS is essentially network attached storage (I believe), network IO greatly affects performance. Small instances don't have particularly great io. Thus, I prefer to run off the transient disk right now over EBS. If we went to larger instance types, which have better network io, that might swing the pendulum.

Each EC2 instance comes with a certain amount of transient storage. It is transient because it does not persist beyond instance termination. Amazon also has persistent storage for your EC2 instances called Elastic Block Store. EBS volumes will persist beyond instance termination and can be attached to any running instance (but only one at once) within the same availability zone.

If you're running MySQL on EC2, it's pretty straightforward. You get an EBS volume for your database and back that volume up to Amazon's S3 service. S3 will then provide multi-site redundancy for your data in the event of AWS availability zone failure.

If you haven't done so already, check out RightScale (www.rightscale.com). They offer a dashboard that helps users access AWS.
Create a free RightScale account and check out their shell scripts. One can get good ideas of automation from them.
Each EC2 instance is a virtual, private server which looks just like any other linux box. However, files on disk are part of shared drives and are not guaranteed to persist. You have three choices : attach and pay for an elastic block store that IS persistent, make periodic backups to S3 or forgo the use of the disk altogether and use SimpleDB instead of mySQL. I'd recommend using an elastic block store.
I'll back this up with the addendum that SimpleDB has useful applications where using it might be a better choice than MySQL (e.g. a service that gets lots of reads but real-time updates isn't necessarily mission critical)
I think it's also interesting to note that once you do a cluster, you have a distributed system and instantaneous writes are no longer a cheap operation... Plus how many operations do you need to access full data in your database? For simple one off access, you could propagate the changes into ram on each of your cluster machines (memcached) and only relatively "unimportant" search operations would see stale data.
I used Engine Yard Solo for working with AWS. It's great service and really easy to get started with Rails app on EC2. You've got to wrap your head around how EC2 works but I really love the ability to start up a brand new server on the fly and do whatever I need to do, and then shut it down.
Others mostly answered your question, but if you like to run MySQL on Elastic Block Store (EBS), you should read the following article:

http://developer.amazonwebservices.com/connect/entry.jspa?ex...

If you take the approach described in the above article, you should think about creating a symbolic link to your EBS volume instead of changing MySQL configuration file.

a. Unless you like throwing money out the window, there is no need to host your stuff on AWS. It's the most expensive of the cloud offerings. Go with Linode or Slicehost.

b. You'll have to use EBS if you want persistent disk storage with an AWS instance. Otherwise when you reboot, goodbye to everything on your harddisk.

But, seriously, reconsider your aims of putting up a 24/7 web hosted up on EC2. You're wasting money.

It is one of the cheapest ways to get a Windows 2003 server slice, if that's your cup of tea, however.
After a cursory googling, it looks like AWS is still the only one where you can programatically modify the number of nodes in your cluster. If your goal is to launch a public facing site and automatically scale up to some limit as you get users, then AWS is a good choice. With AWS you are buying automated scalability and amazon's reliability (not that rackspace doesn't know what they're doing)
You can do things with EC2 you can't do anywhere else.

I've helped companies build deployment processes with EC2 that allows them to launch a staging environment with a single command that includes a complete copy of production data. They run their tests, then cut a release and shutdown the staging environment with another single command. That's not possible without EC2 and EBS.

But he's talking about hosting, not staging. And what you are describing is a good use of EC2. Hosting 24/7 is not.
Staging is one aspect of hosting. I will go even further and say that because a staging environment needs to mimic the production environment as close as possible it should be hosted by the same vendor too.

You're right that if you compare numbers directly, some aspects of EC2 are more expensive than other vendors. My point is that AWS offers greater value by allowing you to do things you can't do anywhere else.

Allocating static IP addresses on the fly for example.

Also, you are wrong. You can do that on slicehost with their API as well.

In fact, with the slicehost api, you can take a snapshot of currently running system, and clone a new slice from that snapshot.

Can you create, attach, and take snapshots of multiple disks with Slicehost?
Depends on how much disk space you need. With Amazon, the space is virtually limitless, and transfers to and from S3 are free. With Slicehost and Linode, you get really tiny disks, and you have to pay for bandwidth to S3 if you need more.

It's also hard to dynamically scale with Slicehost or Linode. You can't have a script bring an instance up for an hour and then shut it down when the load drops off. (Actually, you probably can, but that's not what it's designed for.)

Obviously EC2 is not for everyone, but it is good if you need its features.

Amazon provides a host of support services (Cloudfront CDN anyone??) that are trivial to manage from an existing EBS volume. The extra services that Amazon offers really make the process of going from zero to scale much simpler (albeit not 'easy') than any other host or collection of tools that I've used.

That makes it worth the slightly higher costs for me.

I'd agree, except for all the reasons people gave below. Also, Slicehost is the only other service that provides RAM > 2GB. And EC2 offers more variety of configuration (higher CPU performance versions, larger RAM versions) than anyone else.

I really wish Slicehost or Linode or SoftLayer or someone would do something a little closer to what Amazon's doing, and provide some enterprise-level competition. I have clients who would love to move to Slicehost but probably can't, because of the disk space limit and other similar restrictions.

RightScale's paid edition has prebuilt MySQL Master-Slave configurations with or without EBS. EBS is great if your transaction volume is average, but on high IO disks it can get prohibitively expensive. The RS Manager for MySQL has failover, recovery tools as well. All you need to do is plug in your DB dump.

RightScale's Developer Edition is always free - AND - RightScale Website Edition is FREE for Ycombinator startups while you're actively engaged in the program.