<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"
	>
<channel>
	<title>Comments on: The cloud must be decentralized</title>
	<atom:link href="http://aralbalkan.com/1426/feed" rel="self" type="application/rss+xml" />
	<link>http://aralbalkan.com/1426</link>
	<description>Passionate geekisms.</description>
	<lastBuildDate>Sun, 12 Feb 2012 17:52:56 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Anonymous</title>
		<link>http://aralbalkan.com/1426/comment-page-1#comment-262875</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Fri, 17 Jun 2011 00:41:34 +0000</pubDate>
		<guid isPermaLink="false">http://aralbalkan.com/1426#comment-262875</guid>
		<description>Not only should the cloud be de-centralized for reliability, but it should also be de-centralized because a centralized internet is one that can be easily controlled. The reason why the internet is so successful today is because no government or powerful entity has complete control over it. Instead, we should implement a cloud infrastructure that is spread out over many different web servers across the globe, with data redundancy. This would allow small web server companies and large ones alike to profit from the cloud, assure the continuation of the internet&#039;s revered freedom, and provide current benefits from the cloud such as reduced web serving costs with no need for hardware maintenance on the user&#039;s end.</description>
		<content:encoded><![CDATA[<p>Not only should the cloud be de-centralized for reliability, but it should also be de-centralized because a centralized internet is one that can be easily controlled. The reason why the internet is so successful today is because no government or powerful entity has complete control over it. Instead, we should implement a cloud infrastructure that is spread out over many different web servers across the globe, with data redundancy. This would allow small web server companies and large ones alike to profit from the cloud, assure the continuation of the internet&#8217;s revered freedom, and provide current benefits from the cloud such as reduced web serving costs with no need for hardware maintenance on the user&#8217;s end.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Surge</title>
		<link>http://aralbalkan.com/1426/comment-page-1#comment-232131</link>
		<dc:creator>Surge</dc:creator>
		<pubDate>Wed, 18 Mar 2009 19:44:32 +0000</pubDate>
		<guid isPermaLink="false">http://aralbalkan.com/1426#comment-232131</guid>
		<description>It seems like something is missing, no?</description>
		<content:encoded><![CDATA[<p>It seems like something is missing, no?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam Fitzalan</title>
		<link>http://aralbalkan.com/1426/comment-page-1#comment-169866</link>
		<dc:creator>Adam Fitzalan</dc:creator>
		<pubDate>Thu, 24 Jul 2008 11:07:24 +0000</pubDate>
		<guid isPermaLink="false">http://aralbalkan.com/1426#comment-169866</guid>
		<description>&quot;Amazon S3 has been down for several hours... We&#039;ve also had intermittent issues with Amazon&#039;s SimpleDB. I feel that these issues only serve to highlight the age-old danger of having all your eggs in one basket. Especially a proprietary basket. This is why I applaud Google in releasing the Google App Engine SDK as open source.&quot; Don&#039;t bother reading that article......</description>
		<content:encoded><![CDATA[<p>&#8220;Amazon S3 has been down for several hours&#8230; We&#8217;ve also had intermittent issues with Amazon&#8217;s SimpleDB. I feel that these issues only serve to highlight the age-old danger of having all your eggs in one basket. Especially a proprietary basket. This is why I applaud Google in releasing the Google App Engine SDK as open source.&#8221; Don&#8217;t bother reading that article&#8230;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marc Fawzi</title>
		<link>http://aralbalkan.com/1426/comment-page-1#comment-169647</link>
		<dc:creator>Marc Fawzi</dc:creator>
		<pubDate>Wed, 23 Jul 2008 21:46:32 +0000</pubDate>
		<guid isPermaLink="false">http://aralbalkan.com/1426#comment-169647</guid>
		<description>Here is my analysis of the &quot;quota&quot; problem in Google&#039;s appengine that Aral had raised and that several developers have complained about on the Google app engine mailing list:

http://evolvingtrends.wordpress.com/2008/07/23/google-app-engine-threat-or-opportunity/

I discuss the use of P2P (distribution) in conjunction with appengine and EC2 but the summary below is with respect to the quota problem in appengine.

Summary:

The problem is that they can’t tell the difference between an infinite loop and a routine that will eventually terminate (on its own.) So they give you a quota to use in a time window of a day or a month (however they’ve decided to define the quota window) and your app can burn as many cpu cycles at any given time, i.e. burst, up to the remaining quota for the given time window (hopefully, without depleting all your quota before the end of the time window.)

For a “massively scalable” cloud computing solution it is very dumb for Google to offer a quota-based “free” account (that maxes out and leave you hanging) unless they are working on a way to examine your code for you (before you run it) for potential infinite loops and badly designed queries.

This may sound banal but the reason for enforcing a quota for the free account is because they want to give you a limited (not infinite) free cpu cycles.  The problem with the quota, however, is that once you deplete it, you will have to wait for the next quota window, e.g. 12 hours, a day or a month.

The way to handle this practically is for Google to do away with the quota model (e.g. bill you for all usage) or come up with sophisticated statistical techniques to examine your code for potential infinite loops or costly queries (remember that Turing already proved that you can’t always deduce that logically) before they run it. Without such ability, applied in reliable manner, the only thing they can do when your app inadvertently hits the quota for the given time window is to disable your application until the start of the next quota window, which totally sucks.

---

What am I missing? Isn&#039;t this an obvious Google Duh! moment?</description>
		<content:encoded><![CDATA[<p>Here is my analysis of the &#8220;quota&#8221; problem in Google&#8217;s appengine that Aral had raised and that several developers have complained about on the Google app engine mailing list:</p>
<p><a href="http://evolvingtrends.wordpress.com/2008/07/23/google-app-engine-threat-or-opportunity/" rel="nofollow">http://evolvingtrends.wordpress.com/2008/07/23/google-app-engine-threat-or-opportunity/</a></p>
<p>I discuss the use of P2P (distribution) in conjunction with appengine and EC2 but the summary below is with respect to the quota problem in appengine.</p>
<p>Summary:</p>
<p>The problem is that they can’t tell the difference between an infinite loop and a routine that will eventually terminate (on its own.) So they give you a quota to use in a time window of a day or a month (however they’ve decided to define the quota window) and your app can burn as many cpu cycles at any given time, i.e. burst, up to the remaining quota for the given time window (hopefully, without depleting all your quota before the end of the time window.)</p>
<p>For a “massively scalable” cloud computing solution it is very dumb for Google to offer a quota-based “free” account (that maxes out and leave you hanging) unless they are working on a way to examine your code for you (before you run it) for potential infinite loops and badly designed queries.</p>
<p>This may sound banal but the reason for enforcing a quota for the free account is because they want to give you a limited (not infinite) free cpu cycles.  The problem with the quota, however, is that once you deplete it, you will have to wait for the next quota window, e.g. 12 hours, a day or a month.</p>
<p>The way to handle this practically is for Google to do away with the quota model (e.g. bill you for all usage) or come up with sophisticated statistical techniques to examine your code for potential infinite loops or costly queries (remember that Turing already proved that you can’t always deduce that logically) before they run it. Without such ability, applied in reliable manner, the only thing they can do when your app inadvertently hits the quota for the given time window is to disable your application until the start of the next quota window, which totally sucks.</p>
<p>&#8212;</p>
<p>What am I missing? Isn&#8217;t this an obvious Google Duh! moment?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shane Conder</title>
		<link>http://aralbalkan.com/1426/comment-page-1#comment-168773</link>
		<dc:creator>Shane Conder</dc:creator>
		<pubDate>Mon, 21 Jul 2008 02:29:14 +0000</pubDate>
		<guid isPermaLink="false">http://aralbalkan.com/1426#comment-168773</guid>
		<description>I think Joshua almost hit on the right point.

S3 may have gone down, but like last time, it&#039;s probably for something other than machine availability.  After all, Amazon uses multiple physical hosting locations. So does Google.  But if GAE goes down, it&#039;s down everywhere.

The real point, though, I think is that these commodity providers are providing scalability at prices that an individual can&#039;t compete with. If you want a better up time than AWS or GAE then you have to lease multiple rack locations with multiple computers and multiple backup DNS servers that self heal and redirect on errors. Getting all of that in place is costly.

To use Aral&#039;s example of power, getting in place generators and UPSs to weather any sized power outage and equipment failure is also expensive. 

What we&#039;re missing from GAE and AWS is the ability to do this. Or are we? One might argue that having your own server in the mix is the backup plan. For S3, that&#039;s pretty easy -- just have an alternate URI mapping for when S3 doesn&#039;t respond.  Instead of your own server, though, it could also be a different cloud. An EC2 app could, by default, use S3 for image hosting but fall back on images sourced from Google (GAE or or sites or something).

Expecting a single cloud offering to do this is too much, though.  Right?</description>
		<content:encoded><![CDATA[<p>I think Joshua almost hit on the right point.</p>
<p>S3 may have gone down, but like last time, it&#8217;s probably for something other than machine availability.  After all, Amazon uses multiple physical hosting locations. So does Google.  But if GAE goes down, it&#8217;s down everywhere.</p>
<p>The real point, though, I think is that these commodity providers are providing scalability at prices that an individual can&#8217;t compete with. If you want a better up time than AWS or GAE then you have to lease multiple rack locations with multiple computers and multiple backup DNS servers that self heal and redirect on errors. Getting all of that in place is costly.</p>
<p>To use Aral&#8217;s example of power, getting in place generators and UPSs to weather any sized power outage and equipment failure is also expensive. </p>
<p>What we&#8217;re missing from GAE and AWS is the ability to do this. Or are we? One might argue that having your own server in the mix is the backup plan. For S3, that&#8217;s pretty easy &#8212; just have an alternate URI mapping for when S3 doesn&#8217;t respond.  Instead of your own server, though, it could also be a different cloud. An EC2 app could, by default, use S3 for image hosting but fall back on images sourced from Google (GAE or or sites or something).</p>
<p>Expecting a single cloud offering to do this is too much, though.  Right?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joshua Allen</title>
		<link>http://aralbalkan.com/1426/comment-page-1#comment-168764</link>
		<dc:creator>Joshua Allen</dc:creator>
		<pubDate>Mon, 21 Jul 2008 01:34:40 +0000</pubDate>
		<guid isPermaLink="false">http://aralbalkan.com/1426#comment-168764</guid>
		<description>Contrasting S3 with GAE makes no sense to me; the reason that GAE needed to open source the SDK is because there is an SDK in the first place.  As Thomas points out, most of the SDKs that sit atop S3 are open source, and you actually get to choose between them.  Amazon S3 is brain-dead simple and there is nothing stopping competitors from cloning the service -- the fact that people haven&#039;t has nothing to do with source code access.  In fact, you&#039;re praising Google for open-sourcing their incompatible me-too SDK when you should be asking why they didn&#039;t just clone S3 and make it possible for people like SmugMug to instantly switch service providers in a pinch.

The reason you won&#039;t see lots of competitors in this space is economies of scale.  Amazon can provide the services dramatically cheaper than anyone besides Google, Yahoo!, and Microsoft.  There will be only 2-5 players in this space, since nobody else could afford to price competitively without taking massive losses.  In a situation like this, interop matters a lot, and Amazon is the de facto standard by a *wide* margin.  I don&#039;t doubt that Google will eventually make strides toward interop for apps written on Amazon -- it is the classic underdog strategy and would help them steal business.  But they haven&#039;t yet, and I don&#039;t think it&#039;s a priority for them yet.</description>
		<content:encoded><![CDATA[<p>Contrasting S3 with GAE makes no sense to me; the reason that GAE needed to open source the SDK is because there is an SDK in the first place.  As Thomas points out, most of the SDKs that sit atop S3 are open source, and you actually get to choose between them.  Amazon S3 is brain-dead simple and there is nothing stopping competitors from cloning the service &#8212; the fact that people haven&#8217;t has nothing to do with source code access.  In fact, you&#8217;re praising Google for open-sourcing their incompatible me-too SDK when you should be asking why they didn&#8217;t just clone S3 and make it possible for people like SmugMug to instantly switch service providers in a pinch.</p>
<p>The reason you won&#8217;t see lots of competitors in this space is economies of scale.  Amazon can provide the services dramatically cheaper than anyone besides Google, Yahoo!, and Microsoft.  There will be only 2-5 players in this space, since nobody else could afford to price competitively without taking massive losses.  In a situation like this, interop matters a lot, and Amazon is the de facto standard by a *wide* margin.  I don&#8217;t doubt that Google will eventually make strides toward interop for apps written on Amazon &#8212; it is the classic underdog strategy and would help them steal business.  But they haven&#8217;t yet, and I don&#8217;t think it&#8217;s a priority for them yet.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom Morris</title>
		<link>http://aralbalkan.com/1426/comment-page-1#comment-168742</link>
		<dc:creator>Tom Morris</dc:creator>
		<pubDate>Sun, 20 Jul 2008 23:52:46 +0000</pubDate>
		<guid isPermaLink="false">http://aralbalkan.com/1426#comment-168742</guid>
		<description>I think this is one of the things I like about Heroku. Although it&#039;s based on Amazon S3/EC2, Ruby on Rails and the other layers are the same as what you can run anywhere else. I can build a site in Rails, pop it up on Heroku, then if it becomes popular and I end up not liking Heroku, I can quite easily put my application elsewhere. It&#039;s pretty great. if you want to try out Heroku, shout and I&#039;ll get you an invite.</description>
		<content:encoded><![CDATA[<p>I think this is one of the things I like about Heroku. Although it&#8217;s based on Amazon S3/EC2, Ruby on Rails and the other layers are the same as what you can run anywhere else. I can build a site in Rails, pop it up on Heroku, then if it becomes popular and I end up not liking Heroku, I can quite easily put my application elsewhere. It&#8217;s pretty great. if you want to try out Heroku, shout and I&#8217;ll get you an invite.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

