How does dedicated webhosting compare to Amazon's Cloud? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T05:07:26Z http://stackoverflow.com/feeds/question/36399 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/36399/how-does-dedicated-webhosting-compare-to-amazons-cloud 10 How does dedicated webhosting compare to Amazon's Cloud? skolima 2008-08-30T22:16:15Z 2008-09-19T13:06:15Z <p>After stumbling into <a href="http://beta.stackoverflow.com/questions/24885/do-you-use-amazons-cloud-services-for-your-company" rel="nofollow">Amazon Web Services</a> again I have finally checked their prices and am shocked. Positively. With their flexible billing and extremely low prices, is there any reason for still using a dedicated hosting for a website? The only one I can think of is keeping sensitive data confined to the intranet - but for publicly accessible services?</p> <p>I know the above sounds like an advertisement, but I have - until today - dismissed <a href="http://www.amazon.com/gp/browse.html?node=201590011" rel="nofollow">EC2</a> as much too expensive, while it is cheaper than a budget web hosting. And <a href="http://www.amazon.com/gp/browse.html?node=16427261" rel="nofollow">S3</a> seems perfect for home backup solutions, either for one's private VCS or something like <a href="http://www.bacula.org/en/" rel="nofollow">Bacula</a> (easy to set up) / <a href="http://www.boxbackup.org/" rel="nofollow">Box Backup</a> (for the security-aware).</p> <p>How does this billing system work out in real applications?</p> <p>Could StackOverflow move to a cloud?</p> http://stackoverflow.com/questions/36399/how-does-dedicated-webhosting-compare-to-amazons-cloud/36401#36401 2 Answer by Kyle Cronin for How does dedicated webhosting compare to Amazon's Cloud? Kyle Cronin 2008-08-30T22:18:30Z 2008-08-30T22:18:30Z <p>I've recently become acquainted with Amazon's S3 service - it works more or less as expected. I have a website for my grandmother to showcase her artwork and within an hour I was able to sign up for the service, transfer the files, and save considerable bandwidth charges on her site. Upload and download speeds were bottlenecked by my DSL speed so I can't speculate how fast the service truly is. It can be used for home backups as well - there's a sophisticated access control system to protect the data and numerous programs have been written to allow S3 volumes to mount.</p> http://stackoverflow.com/questions/36399/how-does-dedicated-webhosting-compare-to-amazons-cloud/36404#36404 3 Answer by Vaibhav for How does dedicated webhosting compare to Amazon's Cloud? Vaibhav 2008-08-30T22:20:48Z 2008-08-30T22:20:48Z <p>It doesn't... I think that everyone should plan their deployment strategies towards the cloud. We have lately been deploying a lot of solutions on EC2.</p> <p>Our customers have been asking us to design their applications so that they can be deployed on EC2 and be scaled up on demand.</p> <p>No web hosting solution would allow you to scale up on demand like EC2 can.</p> http://stackoverflow.com/questions/36399/how-does-dedicated-webhosting-compare-to-amazons-cloud/36422#36422 9 Answer by Chris Bunch for How does dedicated webhosting compare to Amazon's Cloud? Chris Bunch 2008-08-30T22:29:38Z 2008-08-30T22:54:31Z <p>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).</p> <p>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).</p> <p>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.</p> <p>@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).</p> <p>Since it's kinda complicated, two providers that aim to help with that (although it sounds too pricey for the average developer) are <a href="http://www.3tera.com/" rel="nofollow">3tera</a> and <a href="http://www.rightscale.com/m/" rel="nofollow">RightScale</a>.</p> http://stackoverflow.com/questions/36399/how-does-dedicated-webhosting-compare-to-amazons-cloud/36553#36553 3 Answer by dp for How does dedicated webhosting compare to Amazon's Cloud? dp 2008-08-31T01:41:54Z 2008-08-31T01:41:54Z <p>Also check out the latest piece in the Amazon Web services puzzle, <a href="http://www.allthingsdistributed.com/2008/08/amazon_ebs_elastic_block_store.html" rel="nofollow">Elastic Block Store</a>.</p> <p>Dare Obasanjo gives a positive <a href="http://www.25hoursaday.com/weblog/2008/08/21/SomeThoughtsOnAmazonsElasticBlockStore.aspx" rel="nofollow">initial response</a></p> http://stackoverflow.com/questions/36399/how-does-dedicated-webhosting-compare-to-amazons-cloud/82912#82912 3 Answer by RazMaTaz for How does dedicated webhosting compare to Amazon's Cloud? RazMaTaz 2008-09-17T13:04:31Z 2008-09-17T13:04:31Z <p>@<a href="#36426" rel="nofollow">kyle</a> For a really small website you're probably looking at two "small" instances (one for the webserver, one for the database) and, say, 50 Gigabytes of persistent storage.</p> <p>Small instances cost $0.10 per hour, persistent storage costs $0.10 per Gigabyte/month, hence:</p> <pre><code> 2 * $0.10 * 24 * 30 = $144 50 * $0.10 = $5 --------------------------------------- $149 </code></pre> <p>On top of that you'll be paying for traffic ($0.10 per Gigabyte, IIRC), I/O and some other auxiliary fee's but those generally don't amount to much (maybe $2/month in your example), no need to worry about them in the beginning.</p> <p>One thing that you shouldn't underestimate is the learning curve/administrative effort for deploying your first app to the cloud. Many things are different and you'll spend many man-hours figuring them out and building infrastructure before you'll be able to deploy your first application.</p> <p>Not every application is suitable for deployment in the cloud either. If your application can not be scaled horizontally over any number of servers then don't even bother looking. Clouds are for scaling out, not up. Furthermore your application must be prepared to handle the failure of any node (yes, that includes your database) at any time. Instances can and <strong>will</strong>¹ disappear at any time. Generally your app must be architected with n+1 redundancy on all levels or you'll face regular downtimes.</p> <p>¹ As a datapoint: Our EC2 app (12 instances) has seen 7 instance failures (lockup or crash) this year.</p> http://stackoverflow.com/questions/36399/how-does-dedicated-webhosting-compare-to-amazons-cloud/101677#101677 2 Answer by sumek for How does dedicated webhosting compare to Amazon's Cloud? sumek 2008-09-19T13:06:15Z 2008-09-19T13:06:15Z <p><a href="http://www.flexiscale.com/" rel="nofollow">Flexiscale</a> preserves the state of the VM as it it turned off. <a href="http://www.cognifide.com" rel="nofollow">We</a> use it as devepment machines and to host our <a href="http://www.cognifide.com" rel="nofollow">company page</a>. It is a bit pricier than Amazons solution though.</p>