<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" 
      xmlns:thr="http://purl.org/syndication/thread/1.0">
  <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/reaching_for_the_sky_through_compute_clouds.php" />
  <link rel="self" type="application/atom+xml" href="http://www.readwriteweb.com/atom.xml" />
  <id>tag:,2008:/1/tag:www.readwriteweb.com,2008://1.5681-</id>
  <updated>2008-05-09T18:05:41Z</updated>
  <title>Comments for Reaching for the Sky Through The Compute Clouds</title>
  
  <generator uri="http://www.sixapart.com/movabletype/">Movable Type 4.1</generator>
  <entry>
    <id>tag:www.readwriteweb.com,2008://1.5681</id>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/reaching_for_the_sky_through_compute_clouds.php" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.readwriteweb.com/cgi-bin/mt/mt-atom.cgi/weblog/blog_id=1/entry_id=5681" title="Reaching for the Sky Through The Compute Clouds" />
    <published>2008-02-18T21:20:07Z</published>
    <updated>2008-02-25T10:43:48Z</updated>
    <title>Reaching for the Sky Through The Compute Clouds</title>
    <summary></summary>
    <author>
      <name>Alex Iskold</name>
      <uri>http://www.adaptiveblue.com</uri>
    </author>
    
    <category term="Amazon" />
    
    <category term="Trends" />
    
    <content type="html" xml:lang="en" xml:base="http://www.readwriteweb.com/">
      <![CDATA[<p><img src="http://www.readwriteweb.com/images/sky.jpg" width="150">On Friday, a massive outage occured at Amazon Web Services that generated a <a href="http://digitaldaily.allthingsd.com/20080215/s3-outage">wave
of negativity</a> and criticism in the blogosphere. Not long ago, Rackspace, one of the world's largest hosting companies, experienced a outage that resulted in a similar reaction. When the backbone collapses, so do our favorite services. This makes
us mad. It makes us say things like: well, maybe we shouldn't be using the cloud. Or things
like: why can't we get 99% uptime? Or: isn't this what an SLA is for?</p>]]>
      <![CDATA[<p>Software and hardware, like any system, can never be perfect. When power outages happen we get frustrated, but we understand that this is a fact of life. Any sufficiently complex
system, like a power grid or Amazon Web Services, is bound to go down. There is little that can be done
to assure us that it never will. Because of this, single outages are not good measures of quality of service.
<a href="http://www.unionsquareventures.com/team/albert.html">Albert Wenger</a> said something to me recently that stuck in
my head: <em>We live in a stochastic world, but people fail to grasp it because all they experience is right now</em>.</p>

<p>So is it really true - is cloud computing a bad idea? Of course not. It is a wonderful,
powerful idea. In this post, we explore the ideas behind cloud computing and argue that
it will be an integral part of our future.</p>

<h3>Clouds vs. LAMPs</h3>

<p><img src="http://www.readwriteweb.com/images/lamp.jpg" align="left">This generation of web services got their start from LAMP - a stack of simple,
yet powerful technologies that to this day is behind a lot of popular web sites. The beauty of LAMP is in its simplicity; it makes it very easy to get a 
prototype out the door. The problem with LAMP is in its scalability. The first scalability issue is fairly minor - threads and socket connections
of the Apache web server. When load increases and configuration is not tuned properly you might run into problems. But the
second problem with LAMP is far more significant: the MySQL relational database is the ultimate bottleneck of the system.</p>

<p>Relational Databases are just not good at growing beyond a certain capacity because of the way they represent information.
And so when you reach a certain scale, they become difficult to manage. A way around it is a technique called data partitioning.
If it is possible to split your data into N independent sets, then you can scale with the LAMP approach indefinitely. But if
this is not the case, then your only way is to abandon the relational database for a distributed one. And this is the path
through which you break into the clouds.</p>

<p><img src="http://www.readwriteweb.com/images/relational-db-scalability.jpg"/></p>

<h2>The Basics of Cloud Computing</h2>

<p>The idea behind cloud computing is simple - scale your application by deploying it
on a large grid of commodity hardware boxes. Each box has exactly the same system installed and
behaves like all other boxes. The load balancer forwards a request to any one box and it is processed
in a stateless manner; meaning the request is followed by an immediate response and no state is held by the system.
The beauty of the cloud is in its scalability - you scale by simply adding more boxes.</p>

<p><img src="http://www.readwriteweb.com/images/basic-compute-cloud.jpg"></p>

<p>In the diagram above, the compute cloud consists of three basic elements: a web server/application layer, a distributed storage layer,  and a distributed queue layer. Each one of these layers is a cloud itself - meaning that boxes
are all identical and perform the same function. In the simplest scenario, the web tier is the same as the bits in the LAMP stack.
The web server can still be Apache and it can be running PHP code - the application. The fundamentally different bit is the database,
which is no longer MySQL, but instead a distributed storage system like <a href="http://alexiskold.wordpress.com/2006/07/11/how-amazon-s3-is-going-to-change-the-world-5gb-at-a-time/">Amazon S3</a>,
<a href="http://www.readwriteweb.com/archives/amazon_web_services_simpledb.php">Amazon SimpleDB</a>, 
or <a href="http://www.readwriteweb.com/archives/amazon_dynamo.php">Amazon Dynamo</a>. The queue piece is optional, but it is needed in
cases when real-time handling is impossible or not necessary.</p>

<p>The real advantage of the cloud is its ability to support on demand business computing. An application written
to run on the cloud scales from 1,000 users to 10,000 and then to 10,000,000 just by expanding the number of boxes.
From a business perspective this is very attractive because it is easy to calculate growth and scalability costs.</p>

<h2>Do Clouds Really Work?</h2>

<p><img src="http://www.readwriteweb.com/images/google-logo.jpg" align="left">You bet! The best example is Google. The king of the web is reigning with a farm of hundreds of thousands,
if not millions of boxes. To race along with the web, Google constantly increases the size of its cloud, incorporating
new web sites, and expanding its index.</p>

<p>Of course, Google isn't the only one operating in a cloud. All major web players including Amazon, eBay, Yahoo! and Facebook are running
some sort of massive computing cloud. Amazon in particular has been perfecting the art for the past fifteen years.
The company has world class expertise and top notch talent in distributed computing, led by CTO <a href="http://www.allthingsdistributed.com/">Werner Vogels</a>.
Obviously, it is not an accident that Amazon is making a major bet and launching into the web services infrastructure vertical.
They believe that clouds will be the future of computing, that they can make a business out of it, and that they can do
it better than you can do it on your own.</p>

<h2>You vs. Them</h2>

<p><img src="http://www.readwriteweb.com/images/knockout-punch.jpg" align="left">Every time we have an outage, like the one that happened on Friday, people sit back and think: How can I possibly
rely on these guys? I bet I can just code this up myself and it will be fine! For decades the software industry has been
suffering from the 'I can do this better' disease. We keep re-inventing programming languages, we keep on re-writing the APIs,
and we keep thinking that we're smarter than the guys who came before us. 99.9% of the time we are wrong. The truth is that we cannot do it better than Amazon. They spent a massive amount of money,
talent and most importantly time, trying to solve this problem. To think that this can be replicated by a startup in a matter
of months, assembled, be cost effective, and work properly is just absurd. Large-scale computing is an enormously complex problem, that takes
even the best and brightest engineers years to get right.</p>

<p>In this day and age, build vs. buy is a complete no-brainer, especially for startups. Whatever is part of your
core business you build. Everything else you buy. If your business really does require a custom cloud solution, then you have to build it.
But the chances that the Amazon Web Services stack, once fully built out, would not fit your needs are slim to none. By focusing on what truly
makes you unique and different you have the chance to beat the competition. Otherwise, if you keep on reinventing the wheel you won't have the time and resources to advance your real product.</p>    

<h2>SLA vs. Common Sense</h2>

<p>But maybe last week's failure is not about clouds but about SLAs (Service Level Agreements)? If the SLA says that you will be up 99.99% of the time, then how can you go down for 3 hours? But here's the truth about SLAs. Whatever they say, they still don't mean that the 
service is not going to go down. You can't prevent power grid outages and you cannot prevent cloud outages. You can take all
the precautions and backups, but still you cannot be completely certain that failure would not occur. First order catastrophes happen.</p>

<p>So the problem is that we should not be looking at the SLA, but instead we need to consider common sense. It is not a single failure of the system
that is indicative of the performance. It is the frequency of failures that we should look for. If AWS goes down once a year each year for 3 hours, then it is nothing short of cloud computing paradise. If this happens every quarter, it's alarming, every month - unacceptable. The point is,
as Albert Wegner explained, we need to think about this stochastically.</p>

<p>Yes, it is difficult for people to be off the grid. Yes, it is difficult to explain to our users why we are down. But we need
to be transparent about our abilities here - we are all humans working as hard as we can to make things work. Everybody gets that.
The crux of the problem is transparency.</p>

<p>Any company that wants to own our hearts, ignite our imaginations, and power the next generation of our computing infrastructure
needs to be transparent. If there is a problem, come out and say it. Put the sign up: "we are working hard on fixing it."
Email the developers: "hey guys, something is seriously wrong on our end, we are investigating and will keep you posted." Transparency and openness from infrastructure providers, from the company all the way down to the consumer, is the key
to having piece of mind. Because everyone knows that when we apply ourselves in a genuine and passionate way, there are no problems
that we cannot solve - the cloud will be up and running shortly.</p>

<h2>The Future: Through the Clouds into the Sky</h2>

<p>The incident last week is in no way going to deter cloud computing or even Amazon Web Services.
We are witnessing a fundamental shift in our ability to compute and this is just the beginning.
Amazon is at the forefront of making massively parallel, web scale compute services available to the world.
Free from the need to solve the scalability problems, startups are able to focus on the specific problems that their product or service is trying to solve.
All of this is happening while the cost of hardware, bandwidth and services overall keep dropping.</p>

<p>Truly, we are reaching for the sky through the computing clouds.</p>]]>
    </content>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2008://1.5681-comment:47068</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2008://1.5681" type="text/html" href="http://www.readwriteweb.com/archives/reaching_for_the_sky_through_compute_clouds.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/reaching_for_the_sky_through_compute_clouds.php#c47068" />
    <title>Comment from  Robin Wauters on 2008-02-18</title>
    <author>
        <name> Robin Wauters</name>
        <uri>http://plugg.eu</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://plugg.eu">
        <![CDATA[<p>Meanwhile, Sun is looking to substitute 'LAMP' with 'SAMP' :)</p>

<p><a href="http://virtualization.com/acquisitions-acquisition-takeover/2008/02/18/sun-aims-to-virtualize-web-2.0-startups.-from-lamp-to-samp/" rel="nofollow">http://virtualization.com/acquisitions-acquisition-takeover/2008/02/18/sun-aims-to-virtualize-web-2.0-startups.-from-lamp-to-samp/</a></p>]]>
    </content>
    <published>2008-02-18T22:29:26Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2008://1.5681-comment:47069</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2008://1.5681" type="text/html" href="http://www.readwriteweb.com/archives/reaching_for_the_sky_through_compute_clouds.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/reaching_for_the_sky_through_compute_clouds.php#c47069" />
    <title>Comment from Alan Wilensky on 2008-02-18</title>
    <author>
        <name>Alan Wilensky</name>
        <uri>http://bizcast.typepad.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://bizcast.typepad.com">
        <![CDATA[<p>You can't scale thousands of small, temporary, transient joins even in a cluster of MySql boxes, or, for that matter, Oracle, or SQL Server farms. They all write saturate. </p>

<p>You need distributed file by user ID cluster, and RDBMS references to the clusters, but not the data.</p>

<p>The latest Object databases from <a href="http://www.db4o.com/default.aspx" rel="nofollow">http://www.db4o.com/default.aspx</a></p>

<p>Are an area that application developers better get familiar with. Danga.com also has some good thoughts.</p>

<p>We have inherited a generation of LAMP stack journeymen that are very bright, but have been lulled into a state of complacency regarding the utility of the Relational Database, to the point where scaling has become a cause celebre (Twitter).</p>]]>
    </content>
    <published>2008-02-18T22:31:25Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2008://1.5681-comment:47073</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2008://1.5681" type="text/html" href="http://www.readwriteweb.com/archives/reaching_for_the_sky_through_compute_clouds.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/reaching_for_the_sky_through_compute_clouds.php#c47073" />
    <title>Comment from martin english on 2008-02-18</title>
    <author>
        <name>martin english</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>The "common sense solution" is simple 'black boxes' with the minimum of linkages.  In short, less to go wrong.  But things will still go wrong, so allow for backup servers / sites / clouds (see how it works ? if you us server based computing, you need a backup server; if you use cloud based computing, you need a backup cloud...).  Not only must these backup clouds be 'safe', they must be available.</p>

<p>The implication, for 100% uptime (and true vendor independence), is that your service needs to be able to run on AWS and EMC and.. </p>

<p>This will cost $$ (developer time if nothing else).  Someone (i.e the customer) needs to decide how far doen the route you go before the spend outweighs the value.</p>]]>
    </content>
    <published>2008-02-18T23:24:15Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2008://1.5681-comment:47075</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2008://1.5681" type="text/html" href="http://www.readwriteweb.com/archives/reaching_for_the_sky_through_compute_clouds.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/reaching_for_the_sky_through_compute_clouds.php#c47075" />
    <title>Comment from yehia on 2008-02-18</title>
    <author>
        <name>yehia</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>well you're right i don't know why poeple got down so hard on amazon like that? but the "You vs. Them" paragraph is total bullshit , if every body did that no body would do anything we wouldn't have seen google because "yahoo spent millions of dollars on thier search engine that no startup could do better than them".</p>]]>
    </content>
    <published>2008-02-18T23:35:49Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2008://1.5681-comment:47076</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2008://1.5681" type="text/html" href="http://www.readwriteweb.com/archives/reaching_for_the_sky_through_compute_clouds.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/reaching_for_the_sky_through_compute_clouds.php#c47076" />
    <title>Comment from Coleman Foley on 2008-02-18</title>
    <author>
        <name>Coleman Foley</name>
        <uri>http://colemanfoley.blogspot.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://colemanfoley.blogspot.com">
        <![CDATA[<p>i agree with yehia.  i think the solution could be found in months, not years, and it doesn't have to be somebody whose core competency lies elsewhere.  We need specialized people working on infrastructure like amazon does.  we just need someone to do it better.</p>]]>
    </content>
    <published>2008-02-19T00:22:37Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2008://1.5681-comment:47078</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2008://1.5681" type="text/html" href="http://www.readwriteweb.com/archives/reaching_for_the_sky_through_compute_clouds.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/reaching_for_the_sky_through_compute_clouds.php#c47078" />
    <title>Comment from Stu on 2008-02-18</title>
    <author>
        <name>Stu</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>You shouldn't lose the entire cloud due to a single failure, or even multiple failures.</p>]]>
    </content>
    <published>2008-02-19T00:44:43Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2008://1.5681-comment:47079</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2008://1.5681" type="text/html" href="http://www.readwriteweb.com/archives/reaching_for_the_sky_through_compute_clouds.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/reaching_for_the_sky_through_compute_clouds.php#c47079" />
    <title>Comment from Vincent Cassar on 2008-02-18</title>
    <author>
        <name>Vincent Cassar</name>
        <uri>http://www.donorpoint.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.donorpoint.com">
        <![CDATA[<p>SLA are here to protect the companies, and c'mon 99% is actually a pretty decent percentage when you know that this percentage is often higher in real life - when using cloud computing. </p>]]>
    </content>
    <published>2008-02-19T01:28:21Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2008://1.5681-comment:47086</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2008://1.5681" type="text/html" href="http://www.readwriteweb.com/archives/reaching_for_the_sky_through_compute_clouds.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/reaching_for_the_sky_through_compute_clouds.php#c47086" />
    <title>Comment from Joris Verschoor on 2008-02-18</title>
    <author>
        <name>Joris Verschoor</name>
        <uri>http://www.hyperswitching.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.hyperswitching.com">
        <![CDATA[<p>Databases are usually the bottleneck. And it's hard to scale them horizontally. I've read some about hypertable, and that seems really cool.</p>]]>
    </content>
    <published>2008-02-19T07:41:09Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2008://1.5681-comment:47098</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2008://1.5681" type="text/html" href="http://www.readwriteweb.com/archives/reaching_for_the_sky_through_compute_clouds.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/reaching_for_the_sky_through_compute_clouds.php#c47098" />
    <title>Comment from Fermin on 2008-02-19</title>
    <author>
        <name>Fermin</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Another interesting point of view of the same fact (Amazon WS outage), also stressing the transparency need in clouds:</p>

<p><a href="http://stage.vambenepe.com/archives/165" rel="nofollow">http://stage.vambenepe.com/archives/165</a></p>

<p>My two cents!</p>

<p>Regards,</p>

<p>------<br />
Fermín</p>]]>
    </content>
    <published>2008-02-19T14:08:14Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2008://1.5681-comment:47109</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2008://1.5681" type="text/html" href="http://www.readwriteweb.com/archives/reaching_for_the_sky_through_compute_clouds.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/reaching_for_the_sky_through_compute_clouds.php#c47109" />
    <title>Comment from Todd on 2008-02-19</title>
    <author>
        <name>Todd</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Cloud computing enthusiasts, check out Cloud DB:</p>

<p><a href="http://couchdb.org" rel="nofollow">http://couchdb.org</a></p>

<p>Written for documents, but extrapolate the concept out to whatever.</p>]]>
    </content>
    <published>2008-02-19T15:49:10Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2008://1.5681-comment:47111</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2008://1.5681" type="text/html" href="http://www.readwriteweb.com/archives/reaching_for_the_sky_through_compute_clouds.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/reaching_for_the_sky_through_compute_clouds.php#c47111" />
    <title>Comment from CloudFans on 2008-02-19</title>
    <author>
        <name>CloudFans</name>
        <uri>http://cloudfans.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://cloudfans.com">
        <![CDATA[<p>Nice slides and clear illustrations. Good read.</p>]]>
    </content>
    <published>2008-02-19T16:30:11Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2008://1.5681-comment:47133</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2008://1.5681" type="text/html" href="http://www.readwriteweb.com/archives/reaching_for_the_sky_through_compute_clouds.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/reaching_for_the_sky_through_compute_clouds.php#c47133" />
    <title>Comment from messels on 2008-02-19</title>
    <author>
        <name>messels</name>
        <uri>http://www.positionmakers.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.positionmakers.com">
        <![CDATA[<p>it's good to see cloud computing gaining so much attention.  have you looked into force.com?  i'm still scratching my head about why salesforce.com isn't getting more attention for their move into the PaaS/cloud solutions space.<br />
<a href="http://www.positionmakers.com/2008/01/18/salesforcecom-expands-its-core-business-paas-and-the-future-of-app-develpment/" rel="nofollow">http://www.positionmakers.com/2008/01/18/salesforcecom-expands-its-core-business-paas-and-the-future-of-app-develpment/</a></p>

<p>i see salesforce.com's move as more important than amazon's if only because salesforce has a focus on b2b where as amazon's focus is more b2c.  i'm sure for all "c" facing applications, amazon will be great.  from a b2b perspective though, integrating the CRM as well as customizing the APIs for any internal IT development needs would position salesforce over amazon.<br />
i'd love to get your feedback and perspective.  </p>]]>
    </content>
    <published>2008-02-19T19:54:29Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2008://1.5681-comment:47244</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2008://1.5681" type="text/html" href="http://www.readwriteweb.com/archives/reaching_for_the_sky_through_compute_clouds.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/reaching_for_the_sky_through_compute_clouds.php#c47244" />
    <title>Comment from GraemeThickins on 2008-02-20</title>
    <author>
        <name>GraemeThickins</name>
        <uri>http://www.tech-surf-blog.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.tech-surf-blog.com">
        <![CDATA[<p>Alex - great post. You really put things in proper perspective.</p>

<p>g</p>]]>
    </content>
    <published>2008-02-21T00:00:57Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2008://1.5681-comment:47637</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2008://1.5681" type="text/html" href="http://www.readwriteweb.com/archives/reaching_for_the_sky_through_compute_clouds.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/reaching_for_the_sky_through_compute_clouds.php#c47637" />
    <title>Comment from Jason on 2008-02-25</title>
    <author>
        <name>Jason</name>
        <uri>http://jasondoucette.ca</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://jasondoucette.ca">
        <![CDATA[<p>You nailed it on the "I can do this better disease" bit - I shudder when I think of all the things our company's been asked to do over the years when perfectly viable alternatives already existed from established companies.  </p>

<p>This is more from a business than tech angle, but a lot of the time, "better" usually means "cheaper" instead of "more reliable" and I think there's an ego play at work where someone wants to go "ha ha it took company X millions to do this and I did it for $4000."  My ego, on the other hand, has shrunk dramatically and I'm happier for it: I've taken to responding to these requests with "I'm simply not smart enough" and not feeling bad at all.  I've bookmarked this post for some more sensible counter-points, thanks :)</p>]]>
    </content>
    <published>2008-02-25T19:17:50Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2008://1.5681-comment:48203</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2008://1.5681" type="text/html" href="http://www.readwriteweb.com/archives/reaching_for_the_sky_through_compute_clouds.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/reaching_for_the_sky_through_compute_clouds.php#c48203" />
    <title>Comment from Avner Algom on 2008-03-02</title>
    <author>
        <name>Avner Algom</name>
        <uri>http://www.grid.org.il/?CategoryID=497</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.grid.org.il/?CategoryID=497">
        <![CDATA[<p>Good Article.<br />
It is to remember that without the convergence of grid, virtualization and SOA concepts, the cloud implementation cannot be done. In fact, the Cloud Computing concept is a Grid based business model that provides utility Computing services and/or SaaS services</p>

<p>Terminology Synch:<br />
Grid provides the Service-Oriented Infrastructure Virtualization (SOIV) that enables IT scalability and flexibility<br />
Service Orientation - Service-orientation is a design paradigm that specifies the creation of automation logic in the form of services. It is applied as a strategic goal in developing a service-oriented architecture (SOA). <br />
Virtualization - a technique for hiding the physical characteristics of computing resources from the way in which other systems, applications, or end users interact with those resources.<br />
Utility Computing – Pay-per-Use for network based Compute and Storage services<br />
Software as a Service (SaaS) - Pay-per-Use for network based software applications’ services<br />
</p>]]>
    </content>
    <published>2008-03-03T00:00:57Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2008://1.5681-comment:48844</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2008://1.5681" type="text/html" href="http://www.readwriteweb.com/archives/reaching_for_the_sky_through_compute_clouds.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/reaching_for_the_sky_through_compute_clouds.php#c48844" />
    <title>Comment from Paul W. Homer on 2008-03-10</title>
    <author>
        <name>Paul W. Homer</name>
        <uri>http://theprogrammersparadox.blogspot.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://theprogrammersparadox.blogspot.com">
        <![CDATA[<p>You're right that some little group can't put in more effort in their technology than Amazon can, but that doesn't mean they can't leap-frog them. </p>

<p>Small changes in abstraction or technology can jump way past huge efforts. At each new level, on a fraction of the work is required to get the same results. Our technology is so immature that one expects there are plenty of 'big leaps' still remaining to be found. Proof: Amazon has put in less work than Oracle. </p>

<p><br />
Paul.<br />
<a href="http://theprogrammersparadox.blogspot.com" rel="nofollow">http://theprogrammersparadox.blogspot.com</a></p>]]>
    </content>
    <published>2008-03-10T14:50:19Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2008://1.5681-comment:48850</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2008://1.5681" type="text/html" href="http://www.readwriteweb.com/archives/reaching_for_the_sky_through_compute_clouds.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/reaching_for_the_sky_through_compute_clouds.php#c48850" />
    <title>Comment from Tim on 2008-03-10</title>
    <author>
        <name>Tim</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>great diagrams about cloud computing.  curious if geo server load balancing vs. generic slb helps in the cloud?  </p>]]>
    </content>
    <published>2008-03-10T15:21:46Z</published>
  </entry>

</feed>