<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Where Google App Engine Spanks Amazon&#8217;s Web Services: S3, EC2, Simple DB, SQS</title>
	<atom:link href="http://adamfisk.wordpress.com/2008/05/28/where-google-app-engine-spanks-amazons-web-services-s3-ec2-simple-db-sqs/feed/" rel="self" type="application/rss+xml" />
	<link>http://adamfisk.wordpress.com/2008/05/28/where-google-app-engine-spanks-amazons-web-services-s3-ec2-simple-db-sqs/</link>
	<description>P2P, Collaboration, Networks</description>
	<lastBuildDate>Mon, 07 Sep 2009 19:29:03 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: mhennig</title>
		<link>http://adamfisk.wordpress.com/2008/05/28/where-google-app-engine-spanks-amazons-web-services-s3-ec2-simple-db-sqs/#comment-6437</link>
		<dc:creator>mhennig</dc:creator>
		<pubDate>Fri, 30 Jan 2009 12:26:57 +0000</pubDate>
		<guid isPermaLink="false">http://adamfisk.wordpress.com/?p=37#comment-6437</guid>
		<description>Also: 
Google Apps ist SAS 70 Type II certified: http://googleenterprise.blogspot.com/2008/11/sas-70-type-ii-for-google-apps.html

Amazon just started: http://developer.amazonwebservices.com/connect/entry!default.jspa?categoryID=152&amp;externalID=1697&amp;fromSearchPage=true</description>
		<content:encoded><![CDATA[<p>Also:<br />
Google Apps ist SAS 70 Type II certified: <a href="http://googleenterprise.blogspot.com/2008/11/sas-70-type-ii-for-google-apps.html" rel="nofollow">http://googleenterprise.blogspot.com/2008/11/sas-70-type-ii-for-google-apps.html</a></p>
<p>Amazon just started: <a href="http://developer.amazonwebservices.com/connect/entry" rel="nofollow">http://developer.amazonwebservices.com/connect/entry</a>!default.jspa?categoryID=152&amp;externalID=1697&amp;fromSearchPage=true</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: adamfisk</title>
		<link>http://adamfisk.wordpress.com/2008/05/28/where-google-app-engine-spanks-amazons-web-services-s3-ec2-simple-db-sqs/#comment-6358</link>
		<dc:creator>adamfisk</dc:creator>
		<pubDate>Tue, 19 Aug 2008 22:42:45 +0000</pubDate>
		<guid isPermaLink="false">http://adamfisk.wordpress.com/?p=37#comment-6358</guid>
		<description>Hey what&#039;s up Sam?  Long time no see.  I&#039;m actually playing with App Engine stuff now and working off Guido&#039;s excellent example code.  Never used Django before, but it&#039;s just so damn straightforward.  Really nice to work with once you get up to speed (took me a sec for sure).  The testing framework is the most recently impressive -- way lower barriers to getting tests up and running on MVC code than the equivalents in Java land, although Java still certainly has its own advantages.  

I&#039;ll soon be running up against any limitations of GAE&#039;s ACID compliance with issuing temporary keys for LittleShoot in emulated &quot;sessions.&quot;  I&#039;ll be writing up a post on porting LittleShoot to GAE that will go into more detail on all of this.  I&#039;ve only written a few python scripts before, so it&#039;s been fun plunging deeper into Python.

It looks like I&#039;ll be using a combination of GAE and AWS for the foreseeable future.</description>
		<content:encoded><![CDATA[<p>Hey what&#8217;s up Sam?  Long time no see.  I&#8217;m actually playing with App Engine stuff now and working off Guido&#8217;s excellent example code.  Never used Django before, but it&#8217;s just so damn straightforward.  Really nice to work with once you get up to speed (took me a sec for sure).  The testing framework is the most recently impressive &#8212; way lower barriers to getting tests up and running on MVC code than the equivalents in Java land, although Java still certainly has its own advantages.  </p>
<p>I&#8217;ll soon be running up against any limitations of GAE&#8217;s ACID compliance with issuing temporary keys for LittleShoot in emulated &#8220;sessions.&#8221;  I&#8217;ll be writing up a post on porting LittleShoot to GAE that will go into more detail on all of this.  I&#8217;ve only written a few python scripts before, so it&#8217;s been fun plunging deeper into Python.</p>
<p>It looks like I&#8217;ll be using a combination of GAE and AWS for the foreseeable future.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: magixman</title>
		<link>http://adamfisk.wordpress.com/2008/05/28/where-google-app-engine-spanks-amazons-web-services-s3-ec2-simple-db-sqs/#comment-6357</link>
		<dc:creator>magixman</dc:creator>
		<pubDate>Tue, 19 Aug 2008 22:30:19 +0000</pubDate>
		<guid isPermaLink="false">http://adamfisk.wordpress.com/?p=37#comment-6357</guid>
		<description>This review is spot on although the cost factor remains to be seen in the real world - still I think it is probably going to work out cheaper on GAE.

The big attraction of GAE for me is certainly the database.  Simple DB has only the D in ACID (Atomicity, Consistency, Isolation, and Durability).  You can&#039;t do transactions and what is worse there is no guarantee that you can read back what you just wrote since it may propagate.  Frankly I just don&#039;t see how you could use this for an application of any complexity and the case studies I have seen show you end up using a real database and have to deal with all the usual scaling issues.  GAE has ACID to a degree (indexes suffer from a second commit phase delay) but at this is something you can work with.

On the other hand GAE is missing lots of stuff in its little sandbox and one may well have to end up using a combination of AWS and GAE.  Images and media are better on S3 and any sort of communication functions that can&#039;t be done on GAE but that can be wrapped in HTTP can run on AWS virtual servers.</description>
		<content:encoded><![CDATA[<p>This review is spot on although the cost factor remains to be seen in the real world &#8211; still I think it is probably going to work out cheaper on GAE.</p>
<p>The big attraction of GAE for me is certainly the database.  Simple DB has only the D in ACID (Atomicity, Consistency, Isolation, and Durability).  You can&#8217;t do transactions and what is worse there is no guarantee that you can read back what you just wrote since it may propagate.  Frankly I just don&#8217;t see how you could use this for an application of any complexity and the case studies I have seen show you end up using a real database and have to deal with all the usual scaling issues.  GAE has ACID to a degree (indexes suffer from a second commit phase delay) but at this is something you can work with.</p>
<p>On the other hand GAE is missing lots of stuff in its little sandbox and one may well have to end up using a combination of AWS and GAE.  Images and media are better on S3 and any sort of communication functions that can&#8217;t be done on GAE but that can be wrapped in HTTP can run on AWS virtual servers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan Siemon &#187; A short comparison of App Engine and AWS</title>
		<link>http://adamfisk.wordpress.com/2008/05/28/where-google-app-engine-spanks-amazons-web-services-s3-ec2-simple-db-sqs/#comment-6346</link>
		<dc:creator>Dan Siemon &#187; A short comparison of App Engine and AWS</dc:creator>
		<pubDate>Sat, 14 Jun 2008 16:08:36 +0000</pubDate>
		<guid isPermaLink="false">http://adamfisk.wordpress.com/?p=37#comment-6346</guid>
		<description>[...] Where Google App Engine Spanks Amazon’s Web Services: S3, EC2, Simple DB, SQS [...]</description>
		<content:encoded><![CDATA[<p>[...] Where Google App Engine Spanks Amazon’s Web Services: S3, EC2, Simple DB, SQS [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: adamfisk</title>
		<link>http://adamfisk.wordpress.com/2008/05/28/where-google-app-engine-spanks-amazons-web-services-s3-ec2-simple-db-sqs/#comment-6343</link>
		<dc:creator>adamfisk</dc:creator>
		<pubDate>Mon, 02 Jun 2008 02:36:23 +0000</pubDate>
		<guid isPermaLink="false">http://adamfisk.wordpress.com/?p=37#comment-6343</guid>
		<description>Hi Cedric- Yeah, the extra bandwidth costs for going from AWS to GAE and vice versa are certainly a concern.  The extra latency is also somewhat of an issue.  In our case, that traffic will initially just be AWS (our SIP servers) notifying GAE when peers come on and offline.  So those are small messages in the scheme of things and a tiny fraction of our traffic -- much less common than searches, for example.

So at least for us it&#039;s not a huge issue, and the benefits outweigh the costs.  The scalability and reliability of GAE is the ultimate cost saver, really.  We need to set up our web server and associated database for scaling.  With AWS, we&#039;d likely eventually run HA proxy load balancing between a bunch of nodes all talking to Simple DB.  While this is doable, just banging on Simple DB to get it to do what we want is significantly more work than tweaking things for Big Table.  With GAE, we don&#039;t have to do the load balancing stuff at all.  So the time savings are the ultimate factor for me.  We still have to worry about scaling our SIP, STUN, and TURN servers, but that&#039;s a problem we have in any scenario.  

I think this gets at an overarching theme, though, that everyone&#039;s architecture is different and it&#039;s important to understand the different options available.  Just keeping up with what&#039;s possible is a challenge these days with the pace of change.  The key is to figure out the best combination of fast, cheap, and scalable for your application based on what you know you can implement.</description>
		<content:encoded><![CDATA[<p>Hi Cedric- Yeah, the extra bandwidth costs for going from AWS to GAE and vice versa are certainly a concern.  The extra latency is also somewhat of an issue.  In our case, that traffic will initially just be AWS (our SIP servers) notifying GAE when peers come on and offline.  So those are small messages in the scheme of things and a tiny fraction of our traffic &#8212; much less common than searches, for example.</p>
<p>So at least for us it&#8217;s not a huge issue, and the benefits outweigh the costs.  The scalability and reliability of GAE is the ultimate cost saver, really.  We need to set up our web server and associated database for scaling.  With AWS, we&#8217;d likely eventually run HA proxy load balancing between a bunch of nodes all talking to Simple DB.  While this is doable, just banging on Simple DB to get it to do what we want is significantly more work than tweaking things for Big Table.  With GAE, we don&#8217;t have to do the load balancing stuff at all.  So the time savings are the ultimate factor for me.  We still have to worry about scaling our SIP, STUN, and TURN servers, but that&#8217;s a problem we have in any scenario.  </p>
<p>I think this gets at an overarching theme, though, that everyone&#8217;s architecture is different and it&#8217;s important to understand the different options available.  Just keeping up with what&#8217;s possible is a challenge these days with the pace of change.  The key is to figure out the best combination of fast, cheap, and scalable for your application based on what you know you can implement.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cedric</title>
		<link>http://adamfisk.wordpress.com/2008/05/28/where-google-app-engine-spanks-amazons-web-services-s3-ec2-simple-db-sqs/#comment-6342</link>
		<dc:creator>cedric</dc:creator>
		<pubDate>Sun, 01 Jun 2008 17:52:07 +0000</pubDate>
		<guid isPermaLink="false">http://adamfisk.wordpress.com/?p=37#comment-6342</guid>
		<description>That makes sens indeed. Porting everything to python would be a lot of work, which might not be worth it. You&#039;re leveraging each grid provider for what it&#039;s good at, very nice.

I&#039;m just concerned by the traffic between your GAE servers and your AWS servers. This additional inbound traffic in respect to AWS and outbound traffic with repect to GAE will generate additional charges which wouldn&#039;t exist if you were locating all your servers at AWS. 

GAE is a lot cheaper indeed but given the additional charges, I guess the overall gain is a bit less than expected.

What do you think ?

Regards,

Cédric</description>
		<content:encoded><![CDATA[<p>That makes sens indeed. Porting everything to python would be a lot of work, which might not be worth it. You&#8217;re leveraging each grid provider for what it&#8217;s good at, very nice.</p>
<p>I&#8217;m just concerned by the traffic between your GAE servers and your AWS servers. This additional inbound traffic in respect to AWS and outbound traffic with repect to GAE will generate additional charges which wouldn&#8217;t exist if you were locating all your servers at AWS. </p>
<p>GAE is a lot cheaper indeed but given the additional charges, I guess the overall gain is a bit less than expected.</p>
<p>What do you think ?</p>
<p>Regards,</p>
<p>Cédric</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: adamfisk</title>
		<link>http://adamfisk.wordpress.com/2008/05/28/where-google-app-engine-spanks-amazons-web-services-s3-ec2-simple-db-sqs/#comment-6341</link>
		<dc:creator>adamfisk</dc:creator>
		<pubDate>Sun, 01 Jun 2008 14:22:18 +0000</pubDate>
		<guid isPermaLink="false">http://adamfisk.wordpress.com/?p=37#comment-6341</guid>
		<description>Hi Cedric-  Astute observation.  I didn&#039;t want to get into that in the article because I didn&#039;t want to make it too focused on LittleShoot and our architecture.  You&#039;re completely correct that we use some low-level protocols like STUN, TURN, and SIP that you cannot run on GAE.  We run all of that on Amazon and will continue to indefinitely.  Those are also all open source implementations we&#039;ve written in Java, and porting those in particular to Python would take a long time.

This brings up another factor that&#039;s somewhat unique to the LittleShoot architecture.  As a P2P application, LittleShoot&#039;s centralized *web server* components are very simple.  That makes porting our web server code to Python a pretty straightforward project.  

I&#039;d say that&#039;s probably a good rule of thumb.  If you either 1) have a simple web server or 2) are starting from scratch, GAE makes a ton of sense for the web server side.

So, you&#039;re completely correct we&#039;re sticking with AWS for a lot of stuff on the non-web server side.  Many sites won&#039;t have such a complex architecture and will be more HTTP based, however.

Best,
Adam</description>
		<content:encoded><![CDATA[<p>Hi Cedric-  Astute observation.  I didn&#8217;t want to get into that in the article because I didn&#8217;t want to make it too focused on LittleShoot and our architecture.  You&#8217;re completely correct that we use some low-level protocols like STUN, TURN, and SIP that you cannot run on GAE.  We run all of that on Amazon and will continue to indefinitely.  Those are also all open source implementations we&#8217;ve written in Java, and porting those in particular to Python would take a long time.</p>
<p>This brings up another factor that&#8217;s somewhat unique to the LittleShoot architecture.  As a P2P application, LittleShoot&#8217;s centralized *web server* components are very simple.  That makes porting our web server code to Python a pretty straightforward project.  </p>
<p>I&#8217;d say that&#8217;s probably a good rule of thumb.  If you either 1) have a simple web server or 2) are starting from scratch, GAE makes a ton of sense for the web server side.</p>
<p>So, you&#8217;re completely correct we&#8217;re sticking with AWS for a lot of stuff on the non-web server side.  Many sites won&#8217;t have such a complex architecture and will be more HTTP based, however.</p>
<p>Best,<br />
Adam</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cedric</title>
		<link>http://adamfisk.wordpress.com/2008/05/28/where-google-app-engine-spanks-amazons-web-services-s3-ec2-simple-db-sqs/#comment-6340</link>
		<dc:creator>cedric</dc:creator>
		<pubDate>Sun, 01 Jun 2008 13:24:12 +0000</pubDate>
		<guid isPermaLink="false">http://adamfisk.wordpress.com/?p=37#comment-6340</guid>
		<description>Hi Adam,

Your feedback on AWS and GAE is very valuable; I&#039;m considering myself AWS and GAE for my own project and am wondering what&#039;s possible with GAE. You mention rewriting all your code in python so as to run on GAE, but according to the architecture page on LittleShoot.com (great name btw), you seem to leverage low level protocols such as UDP, STUN, TURN and SIP which as far as I know don&#039;t run over HTTP. Is it possible to run those on GAE or will you have to stick with AWS for a part of your architecture ?

Thanx again for your feedback.

Regards,

Cédric</description>
		<content:encoded><![CDATA[<p>Hi Adam,</p>
<p>Your feedback on AWS and GAE is very valuable; I&#8217;m considering myself AWS and GAE for my own project and am wondering what&#8217;s possible with GAE. You mention rewriting all your code in python so as to run on GAE, but according to the architecture page on LittleShoot.com (great name btw), you seem to leverage low level protocols such as UDP, STUN, TURN and SIP which as far as I know don&#8217;t run over HTTP. Is it possible to run those on GAE or will you have to stick with AWS for a part of your architecture ?</p>
<p>Thanx again for your feedback.</p>
<p>Regards,</p>
<p>Cédric</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Top Posts &#171; WordPress.com</title>
		<link>http://adamfisk.wordpress.com/2008/05/28/where-google-app-engine-spanks-amazons-web-services-s3-ec2-simple-db-sqs/#comment-6338</link>
		<dc:creator>Top Posts &#171; WordPress.com</dc:creator>
		<pubDate>Fri, 30 May 2008 00:03:59 +0000</pubDate>
		<guid isPermaLink="false">http://adamfisk.wordpress.com/?p=37#comment-6338</guid>
		<description>[...]  Where Google App Engine Spanks Amazon&#8217;s Web Services: S3, EC2, Simple DB, SQS First off, I loooove Amazon Web Services (AWS), and we make heavy use of S3, EC2, Simple DB, and Elastic IPs for [...] [...]</description>
		<content:encoded><![CDATA[<p>[...]  Where Google App Engine Spanks Amazon&#8217;s Web Services: S3, EC2, Simple DB, SQS First off, I loooove Amazon Web Services (AWS), and we make heavy use of S3, EC2, Simple DB, and Elastic IPs for [...] [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
