show/hide this revision's text 2 added 582 characters in body

One of the big reasons against going to the cloud is exactly what you said - the need to keep your sensitive data on your servers. Another one is what happens to your credit card if you have some process that goes into an infinite loop and drains as much CPU/network usage as possible (although Amazon may have some management software to address that).

I think the real issue is the lack of persistence in the VM; that is, you need to use S3 to backup everything important on that box, because if the VM goes down, they just reboot you from a fresh VM instance (e.g., a fresh Ubuntu install or whatever).

I haven't used it a whole lot, but that was the understanding I had from it, and that was how they achieve the scalability behind it all. Feel free to add on if anything is amiss.

@Kyle: Yes, you can use it to make a LAMP, but you have the same persistence issue, so you can either (1) hope your box is always up, in which case it's the same as a traditional LAMP setup, or (2) use it as a LAMP and rewrite everything that needs persistence to use S3 (e.g., replace MySQL with S3).

Since it's kinda complicated, two providers that aim to help with that (although it sounds too pricey for the average developer) are 3tera and RightScale.

show/hide this revision's text 1

One of the big reasons against going to the cloud is exactly what you said - the need to keep your sensitive data on your servers. Another one is what happens to your credit card if you have some process that goes into an infinite loop and drains as much CPU/network usage as possible (although Amazon may have some management software to address that).

I think the real issue is the lack of persistence in the VM; that is, you need to use S3 to backup everything important on that box, because if the VM goes down, they just reboot you from a fresh VM instance (e.g., a fresh Ubuntu install or whatever).

I haven't used it a whole lot, but that was the understanding I had from it, and that was how they achieve the scalability behind it all. Feel free to add on if anything is amiss.