<?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/"
		>
<channel>
	<title>Comments on: Amazon SimpleDB a complete flop?</title>
	<atom:link href="http://blogs.fluidinfo.com/terry/2008/12/02/amazon-simpledb-a-complete-flop/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.fluidinfo.com/terry/2008/12/02/amazon-simpledb-a-complete-flop/</link>
	<description>Terry Jones</description>
	<lastBuildDate>Tue, 16 Feb 2010 15:05:19 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: terrycojones</title>
		<link>http://blogs.fluidinfo.com/terry/2008/12/02/amazon-simpledb-a-complete-flop/comment-page-1/#comment-1592</link>
		<dc:creator>terrycojones</dc:creator>
		<pubDate>Sun, 01 Nov 2009 08:42:45 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.fluidinfo.com/terry/?p=409#comment-1592</guid>
		<description>Thanks!</description>
		<content:encoded><![CDATA[<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: adjustable_table_lamp</title>
		<link>http://blogs.fluidinfo.com/terry/2008/12/02/amazon-simpledb-a-complete-flop/comment-page-1/#comment-1591</link>
		<dc:creator>adjustable_table_lamp</dc:creator>
		<pubDate>Sun, 01 Nov 2009 08:41:08 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.fluidinfo.com/terry/?p=409#comment-1591</guid>
		<description>I&#039;ll back again for sure, thanks for great article :D</description>
		<content:encoded><![CDATA[<p>I&#39;ll back again for sure, thanks for great article :D</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott Kingsley Clark</title>
		<link>http://blogs.fluidinfo.com/terry/2008/12/02/amazon-simpledb-a-complete-flop/comment-page-1/#comment-914</link>
		<dc:creator>Scott Kingsley Clark</dc:creator>
		<pubDate>Mon, 23 Feb 2009 21:01:53 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.fluidinfo.com/terry/?p=409#comment-914</guid>
		<description>I like the idea behind SimpleDB, but I wish there was a service like this for MySQL or relationship databases in general.</description>
		<content:encoded><![CDATA[<p>I like the idea behind SimpleDB, but I wish there was a service like this for MySQL or relationship databases in general.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nitin Borwankar</title>
		<link>http://blogs.fluidinfo.com/terry/2008/12/02/amazon-simpledb-a-complete-flop/comment-page-1/#comment-848</link>
		<dc:creator>Nitin Borwankar</dc:creator>
		<pubDate>Tue, 30 Dec 2008 23:11:36 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.fluidinfo.com/terry/?p=409#comment-848</guid>
		<description>Hi Terry,

I think the appearance of Google App Engine and the &quot;massively scalable Google Data Store&quot; buzz took a lot of web app developers in the GAE direction.
GAE has a free level and I think Amazon has been forced to offer a free level due to market pressures.

The major reason for using SDB or GDS for that matter is the data model.  Both of these allow dynamic attributes which are very important in modern semi-structured data.

I am working on a project to modernize technology for managing academic bibliographic items - this is an NSF funded project and the core need here is dynamic attributes because on of the core formats &#039;bibtex&#039; is an extensible format.  Also the need for a data base which is a key value store where values can be lists == keys can have multiple values.

While you can model this in a relational database using a key-value table, unifying the dynamic and static attributes in queries gets ugly fast.

Both GAE (through its Expando model) and SDB just natively, allow attributes to be added at run time and for keys to have multiple values. If your model needs this and you are not at the bleeding edge of data size then these datastores buy you a lot.

Currently GAE has some obscurely expressed limit on resource cost of a query and web request and it times out when you exceed it but you really don&#039;t have a good idea how to tune it expect to try to do &quot;less bad things&quot;

SDB on the other hand tells you that if your query exceeds a certain well defined CPU usage it will time out - this suggests that if your queries are the equivalent of table scans or are above some level of computational cost you SDB will not work.

One significant disadvantage that GAE has is that the database is not exposed via  REST&#039;ish URL&#039;s or via web services of any kind.  It is up to the app you write to do that.

I have noticed that AWS continues to incrementally improve each of their web services in feature set and reduced cost as they scale up.  I think the SDB data model takes getting used to and also early users of EC2 and S3 often experienced  outages so SDB may be in &quot;growing pain stage&quot; 

I am currently using GAE for my bibliographic item store and will be experimenting with SDB as well on this real world app and will keep you informed.

Nitin</description>
		<content:encoded><![CDATA[<p>Hi Terry,</p>
<p>I think the appearance of Google App Engine and the &#8220;massively scalable Google Data Store&#8221; buzz took a lot of web app developers in the GAE direction.<br />
GAE has a free level and I think Amazon has been forced to offer a free level due to market pressures.</p>
<p>The major reason for using SDB or GDS for that matter is the data model.  Both of these allow dynamic attributes which are very important in modern semi-structured data.</p>
<p>I am working on a project to modernize technology for managing academic bibliographic items &#8211; this is an NSF funded project and the core need here is dynamic attributes because on of the core formats &#8216;bibtex&#8217; is an extensible format.  Also the need for a data base which is a key value store where values can be lists == keys can have multiple values.</p>
<p>While you can model this in a relational database using a key-value table, unifying the dynamic and static attributes in queries gets ugly fast.</p>
<p>Both GAE (through its Expando model) and SDB just natively, allow attributes to be added at run time and for keys to have multiple values. If your model needs this and you are not at the bleeding edge of data size then these datastores buy you a lot.</p>
<p>Currently GAE has some obscurely expressed limit on resource cost of a query and web request and it times out when you exceed it but you really don&#8217;t have a good idea how to tune it expect to try to do &#8220;less bad things&#8221;</p>
<p>SDB on the other hand tells you that if your query exceeds a certain well defined CPU usage it will time out &#8211; this suggests that if your queries are the equivalent of table scans or are above some level of computational cost you SDB will not work.</p>
<p>One significant disadvantage that GAE has is that the database is not exposed via  REST&#8217;ish URL&#8217;s or via web services of any kind.  It is up to the app you write to do that.</p>
<p>I have noticed that AWS continues to incrementally improve each of their web services in feature set and reduced cost as they scale up.  I think the SDB data model takes getting used to and also early users of EC2 and S3 often experienced  outages so SDB may be in &#8220;growing pain stage&#8221; </p>
<p>I am currently using GAE for my bibliographic item store and will be experimenting with SDB as well on this real world app and will keep you informed.</p>
<p>Nitin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill</title>
		<link>http://blogs.fluidinfo.com/terry/2008/12/02/amazon-simpledb-a-complete-flop/comment-page-1/#comment-798</link>
		<dc:creator>Bill</dc:creator>
		<pubDate>Mon, 08 Dec 2008 19:57:19 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.fluidinfo.com/terry/?p=409#comment-798</guid>
		<description>Amazon SimpleDb has a lot of problems. Reliability is not up to snuff and it doesn&#039;t really do what it should with performance. There are probably some vectors in which it scales better than MySQL (probably parallel reads/writes) but there are certainly others in which it does not scale as well (queries across hundreds of megabytes of data in a single table/domain). With MySQL, when you do a query that takes a &quot;long time&quot; it gets logged and you can improve its performance later. With SimpleDb, it croaks.

The costs and benefits list is quite long and complex so I won&#039;t get into it here, but overall I think that only a tiny fraction of applications will find it preferable to MySQL.</description>
		<content:encoded><![CDATA[<p>Amazon SimpleDb has a lot of problems. Reliability is not up to snuff and it doesn&#8217;t really do what it should with performance. There are probably some vectors in which it scales better than MySQL (probably parallel reads/writes) but there are certainly others in which it does not scale as well (queries across hundreds of megabytes of data in a single table/domain). With MySQL, when you do a query that takes a &#8220;long time&#8221; it gets logged and you can improve its performance later. With SimpleDb, it croaks.</p>
<p>The costs and benefits list is quite long and complex so I won&#8217;t get into it here, but overall I think that only a tiny fraction of applications will find it preferable to MySQL.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: terry</title>
		<link>http://blogs.fluidinfo.com/terry/2008/12/02/amazon-simpledb-a-complete-flop/comment-page-1/#comment-790</link>
		<dc:creator>terry</dc:creator>
		<pubDate>Sun, 07 Dec 2008 11:47:26 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.fluidinfo.com/terry/?p=409#comment-790</guid>
		<description>Hi Alan

That&#039;s very interesting. I&#039;ve spent many years thinking about and building the product that Fluidinfo (my company) is now working to release. For a long time I resisted the &quot;database&quot; label. But I had enormous trouble getting people (mainly potential investors) to understand what we were trying to do. Finally I relented and started calling it FluidDB. I find the &quot;database&quot; part of the name slow and boring, and now you&#039;ve pointed out that it might even be seriously misleading. We&#039;ve cycled through a few names (one of the advantages of having something that takes a while to build is that you can play with different names), none of them particularly satisfying. It&#039;s a product (initially) for programmers, so giving it a name that they can recognize seems sensible. But if they recognize it and think &quot;that&#039;s not a database&quot;, it&#039;s not good.

Hmmmm.....

Thanks,
Terry</description>
		<content:encoded><![CDATA[<p>Hi Alan</p>
<p>That&#8217;s very interesting. I&#8217;ve spent many years thinking about and building the product that Fluidinfo (my company) is now working to release. For a long time I resisted the &#8220;database&#8221; label. But I had enormous trouble getting people (mainly potential investors) to understand what we were trying to do. Finally I relented and started calling it FluidDB. I find the &#8220;database&#8221; part of the name slow and boring, and now you&#8217;ve pointed out that it might even be seriously misleading. We&#8217;ve cycled through a few names (one of the advantages of having something that takes a while to build is that you can play with different names), none of them particularly satisfying. It&#8217;s a product (initially) for programmers, so giving it a name that they can recognize seems sensible. But if they recognize it and think &#8220;that&#8217;s not a database&#8221;, it&#8217;s not good.</p>
<p>Hmmmm&#8230;..</p>
<p>Thanks,<br />
Terry</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alan</title>
		<link>http://blogs.fluidinfo.com/terry/2008/12/02/amazon-simpledb-a-complete-flop/comment-page-1/#comment-789</link>
		<dc:creator>Alan</dc:creator>
		<pubDate>Sun, 07 Dec 2008 11:31:29 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.fluidinfo.com/terry/?p=409#comment-789</guid>
		<description>You ask the question is SimpleDB a complete flop?

yes and no.

Yes in terms of marketing.  Amazon have completely blundered this area, and really should drop the &quot;DB&quot; tag as quickly as possible. It is not a DB in the sense that most developers recognize and here in lies the confusion.

We are sold the wrong product to begin with.

Instead it is a global registry; nothing more, nothing less.  A registry is not a database by any stretch.

We use SimpleDB to manage all our instances running in the cloud, in a variety of different of different providers, while we power some of the largest sites in Europe.  Without it, we would have to be doing a lot of extra management, and without a doubt it is a very slick and useable service.

The problem is, people don&#039;t know what to use it for; they think database, and are left with effectively a hashmap in the cloud.</description>
		<content:encoded><![CDATA[<p>You ask the question is SimpleDB a complete flop?</p>
<p>yes and no.</p>
<p>Yes in terms of marketing.  Amazon have completely blundered this area, and really should drop the &#8220;DB&#8221; tag as quickly as possible. It is not a DB in the sense that most developers recognize and here in lies the confusion.</p>
<p>We are sold the wrong product to begin with.</p>
<p>Instead it is a global registry; nothing more, nothing less.  A registry is not a database by any stretch.</p>
<p>We use SimpleDB to manage all our instances running in the cloud, in a variety of different of different providers, while we power some of the largest sites in Europe.  Without it, we would have to be doing a lot of extra management, and without a doubt it is a very slick and useable service.</p>
<p>The problem is, people don&#8217;t know what to use it for; they think database, and are left with effectively a hashmap in the cloud.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: terry</title>
		<link>http://blogs.fluidinfo.com/terry/2008/12/02/amazon-simpledb-a-complete-flop/comment-page-1/#comment-786</link>
		<dc:creator>terry</dc:creator>
		<pubDate>Sat, 06 Dec 2008 20:06:18 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.fluidinfo.com/terry/?p=409#comment-786</guid>
		<description>Hi Engago

We do the same: EC2 + S3 + Postgresql

And thanks!

Terry</description>
		<content:encoded><![CDATA[<p>Hi Engago</p>
<p>We do the same: EC2 + S3 + Postgresql</p>
<p>And thanks!</p>
<p>Terry</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Engago Team</title>
		<link>http://blogs.fluidinfo.com/terry/2008/12/02/amazon-simpledb-a-complete-flop/comment-page-1/#comment-785</link>
		<dc:creator>Engago Team</dc:creator>
		<pubDate>Sat, 06 Dec 2008 20:01:27 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.fluidinfo.com/terry/?p=409#comment-785</guid>
		<description>We use AWS EC2 and S3 with PostgreSQL.
Why because we know PostgreSQL and its&#039; reliability.
Why bother about and take a risk with SimpleDB as you have PostgreSQL?

@Terry Jones - Good luck with FluidInfo.</description>
		<content:encoded><![CDATA[<p>We use AWS EC2 and S3 with PostgreSQL.<br />
Why because we know PostgreSQL and its&#8217; reliability.<br />
Why bother about and take a risk with SimpleDB as you have PostgreSQL?</p>
<p>@Terry Jones &#8211; Good luck with FluidInfo.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nikolay Kolev</title>
		<link>http://blogs.fluidinfo.com/terry/2008/12/02/amazon-simpledb-a-complete-flop/comment-page-1/#comment-780</link>
		<dc:creator>Nikolay Kolev</dc:creator>
		<pubDate>Fri, 05 Dec 2008 12:18:43 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.fluidinfo.com/terry/?p=409#comment-780</guid>
		<description>Another show stopper in SimpleDB is the low limit of attributes in a query - either 10, or 15, I don&#039;t remember exactly. Lack of full-text search is also a very limiting factor. And last, but not least, inserts are slow - sometimes one takes 1-2 seconds (although there&#039;s a new mass update capability now). Oh, also, the lack of integration with Ruby on Rails models is also a problem as many startups use Rails. On the contrary, AppEngine integrates well with Django and this is where Amazon should focus on - a drop-in replacement in existing applications.

It&#039;s interesting that nobody has mentioned here ThruDB, which uses S3, and they say is faster and cheaper than SDB.</description>
		<content:encoded><![CDATA[<p>Another show stopper in SimpleDB is the low limit of attributes in a query &#8211; either 10, or 15, I don&#8217;t remember exactly. Lack of full-text search is also a very limiting factor. And last, but not least, inserts are slow &#8211; sometimes one takes 1-2 seconds (although there&#8217;s a new mass update capability now). Oh, also, the lack of integration with Ruby on Rails models is also a problem as many startups use Rails. On the contrary, AppEngine integrates well with Django and this is where Amazon should focus on &#8211; a drop-in replacement in existing applications.</p>
<p>It&#8217;s interesting that nobody has mentioned here ThruDB, which uses S3, and they say is faster and cheaper than SDB.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Van Dijck&#8217;s Guide to Ease &#187; Blog Archive</title>
		<link>http://blogs.fluidinfo.com/terry/2008/12/02/amazon-simpledb-a-complete-flop/comment-page-1/#comment-765</link>
		<dc:creator>Peter Van Dijck&#8217;s Guide to Ease &#187; Blog Archive</dc:creator>
		<pubDate>Tue, 02 Dec 2008 18:21:24 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.fluidinfo.com/terry/?p=409#comment-765</guid>
		<description>[...] (via Simon) Amazon SimpleDB a complete flop? [...]</description>
		<content:encoded><![CDATA[<p>[...] (via Simon) Amazon SimpleDB a complete flop? [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mocky Habeeb</title>
		<link>http://blogs.fluidinfo.com/terry/2008/12/02/amazon-simpledb-a-complete-flop/comment-page-1/#comment-764</link>
		<dc:creator>Mocky Habeeb</dc:creator>
		<pubDate>Tue, 02 Dec 2008 16:24:55 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.fluidinfo.com/terry/?p=409#comment-764</guid>
		<description>Amazon SimpleDB a complete flop?

That&#039;s a good question and one that has certainly entered my mind. In addition to the lack of web content that you cite, the simple db forums at amazon are much less active than the s3 and ec2 forums.

Simple db is very different from what people are used to in a database and the benefits are not as obvious as are the benefits of s3 and ec2. 

I think it may be a marketing and positioning issue. Focusing on the &quot;simplicity&quot; would probably be a better fit if there were official tools that made it simple to import and export data and perform other functions that database folks are used to. 

Third party tooling continues to grow and with the massive price cuts, the &quot;free trial&quot; and the public beta I think that adoption will grow. But until tooling makes it truly simple to administer, I don&#039;t know how sharply that adoption curve will rise.

FWIW: I think simple db is great technology, I use it and I hope that the answer to the question turns out to be &quot;no&quot;.</description>
		<content:encoded><![CDATA[<p>Amazon SimpleDB a complete flop?</p>
<p>That&#8217;s a good question and one that has certainly entered my mind. In addition to the lack of web content that you cite, the simple db forums at amazon are much less active than the s3 and ec2 forums.</p>
<p>Simple db is very different from what people are used to in a database and the benefits are not as obvious as are the benefits of s3 and ec2. </p>
<p>I think it may be a marketing and positioning issue. Focusing on the &#8220;simplicity&#8221; would probably be a better fit if there were official tools that made it simple to import and export data and perform other functions that database folks are used to. </p>
<p>Third party tooling continues to grow and with the massive price cuts, the &#8220;free trial&#8221; and the public beta I think that adoption will grow. But until tooling makes it truly simple to administer, I don&#8217;t know how sharply that adoption curve will rise.</p>
<p>FWIW: I think simple db is great technology, I use it and I hope that the answer to the question turns out to be &#8220;no&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mitch</title>
		<link>http://blogs.fluidinfo.com/terry/2008/12/02/amazon-simpledb-a-complete-flop/comment-page-1/#comment-762</link>
		<dc:creator>Mitch</dc:creator>
		<pubDate>Tue, 02 Dec 2008 13:36:20 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.fluidinfo.com/terry/?p=409#comment-762</guid>
		<description>Each item in the domain can have a total of 256 attributes and/or values associated with it.  Each item is completely independent of the other items in the domain (look ma, no schema!). 

The 1K limit hasn&#039;t been a big problem for us.  We have an ORM layer that allows large fields to be stored in S3.  Of course, you can&#039;t search on that data, they are just blobs.

If you think about a typical web app and the objects you would have (e.g. users, groups, etc.) most have a relatively small number of metadata fields (e.g. username,  email address, etc.) that easily fit within the current limits of SimpleDB.  At least, that&#039;s been our experience.</description>
		<content:encoded><![CDATA[<p>Each item in the domain can have a total of 256 attributes and/or values associated with it.  Each item is completely independent of the other items in the domain (look ma, no schema!). </p>
<p>The 1K limit hasn&#8217;t been a big problem for us.  We have an ORM layer that allows large fields to be stored in S3.  Of course, you can&#8217;t search on that data, they are just blobs.</p>
<p>If you think about a typical web app and the objects you would have (e.g. users, groups, etc.) most have a relatively small number of metadata fields (e.g. username,  email address, etc.) that easily fit within the current limits of SimpleDB.  At least, that&#8217;s been our experience.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: terry</title>
		<link>http://blogs.fluidinfo.com/terry/2008/12/02/amazon-simpledb-a-complete-flop/comment-page-1/#comment-761</link>
		<dc:creator>terry</dc:creator>
		<pubDate>Tue, 02 Dec 2008 12:52:06 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.fluidinfo.com/terry/?p=409#comment-761</guid>
		<description>Hi Jay

Thanks!  You say &quot;The biggest failing… the 1k field limit. SDB is effectively a document store&quot; but it feels like you meant to say &quot;a metadata store&quot;?

Also, you remind me of a question I had when I read the docs originally. I meant to write something to test it, but perhaps you know the answer. Is the 256 attribute limit imposed at the domain level? I know a doc can have 256 attributes, but can two docs in the same domain have mutually independent attribute sets with the total being over 256? Am I making sense?</description>
		<content:encoded><![CDATA[<p>Hi Jay</p>
<p>Thanks!  You say &#8220;The biggest failing… the 1k field limit. SDB is effectively a document store&#8221; but it feels like you meant to say &#8220;a metadata store&#8221;?</p>
<p>Also, you remind me of a question I had when I read the docs originally. I meant to write something to test it, but perhaps you know the answer. Is the 256 attribute limit imposed at the domain level? I know a doc can have 256 attributes, but can two docs in the same domain have mutually independent attribute sets with the total being over 256? Am I making sense?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jay Ridgeway</title>
		<link>http://blogs.fluidinfo.com/terry/2008/12/02/amazon-simpledb-a-complete-flop/comment-page-1/#comment-760</link>
		<dc:creator>Jay Ridgeway</dc:creator>
		<pubDate>Tue, 02 Dec 2008 12:40:58 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.fluidinfo.com/terry/?p=409#comment-760</guid>
		<description>Look at the feature set. Distributed, indexed, replicated data storage with a query language and client interface (http); that makes it available from production server and laptop alike. Add to that a simple single table (they call it a domain) approach and it&#039;s pretty easy to build data intensive applications quickly. All this without a dba or sysadmin (people are usually the major expense, not hardware/disk). 

So why do I think people aren&#039;t using it? Probably for the same reasons I&#039;m no longer using it. A flat or document oriented data model is fast for development but often lacks flexibility. Couple this with a lack of export/import tools and you can get into trouble when its time for new features. The biggest failing... the 1k field limit. SDB is effectively a document store. A 1k field limit removes it from the running for most apps that are interested in this model  (256 attribute pairs is also kinda small).

What is it good for? Directory data... with not too many fields... and not too big. :)

A summary of my SimpleDB presentation @ etech: http://bit.ly/CdUq</description>
		<content:encoded><![CDATA[<p>Look at the feature set. Distributed, indexed, replicated data storage with a query language and client interface (http); that makes it available from production server and laptop alike. Add to that a simple single table (they call it a domain) approach and it&#8217;s pretty easy to build data intensive applications quickly. All this without a dba or sysadmin (people are usually the major expense, not hardware/disk). </p>
<p>So why do I think people aren&#8217;t using it? Probably for the same reasons I&#8217;m no longer using it. A flat or document oriented data model is fast for development but often lacks flexibility. Couple this with a lack of export/import tools and you can get into trouble when its time for new features. The biggest failing&#8230; the 1k field limit. SDB is effectively a document store. A 1k field limit removes it from the running for most apps that are interested in this model  (256 attribute pairs is also kinda small).</p>
<p>What is it good for? Directory data&#8230; with not too many fields&#8230; and not too big. :)</p>
<p>A summary of my SimpleDB presentation @ etech: <a href="http://bit.ly/CdUq" rel="nofollow">http://bit.ly/CdUq</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mitch</title>
		<link>http://blogs.fluidinfo.com/terry/2008/12/02/amazon-simpledb-a-complete-flop/comment-page-1/#comment-759</link>
		<dc:creator>Mitch</dc:creator>
		<pubDate>Tue, 02 Dec 2008 03:39:46 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.fluidinfo.com/terry/?p=409#comment-759</guid>
		<description>We have been using SimpleDB for almost two years.  We were in the original private beta and have continued on since then.  I love it but if you look at it expecting to find a hosted MySQL, you will be disappointed.  They don&#039;t call it simple for nothing.  But, what it does it does very well and we have built and run a number of apps for us and for other people that run completely in EC2/S3/SimpleDB/SQS.  For me, I&#039;d rather give up some features to gain scalability and I love that I don&#039;t have to maintain the thing.  It just works.

And, no, I don&#039;t think SimpleDB has been a flop.  There have been people on the waiting list for ever since I&#039;ve been involved.  But the price change and the move to provide a SQL-like SELECT query language are clearly meant to draw more people in.</description>
		<content:encoded><![CDATA[<p>We have been using SimpleDB for almost two years.  We were in the original private beta and have continued on since then.  I love it but if you look at it expecting to find a hosted MySQL, you will be disappointed.  They don&#8217;t call it simple for nothing.  But, what it does it does very well and we have built and run a number of apps for us and for other people that run completely in EC2/S3/SimpleDB/SQS.  For me, I&#8217;d rather give up some features to gain scalability and I love that I don&#8217;t have to maintain the thing.  It just works.</p>
<p>And, no, I don&#8217;t think SimpleDB has been a flop.  There have been people on the waiting list for ever since I&#8217;ve been involved.  But the price change and the move to provide a SQL-like SELECT query language are clearly meant to draw more people in.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: terry</title>
		<link>http://blogs.fluidinfo.com/terry/2008/12/02/amazon-simpledb-a-complete-flop/comment-page-1/#comment-758</link>
		<dc:creator>terry</dc:creator>
		<pubDate>Tue, 02 Dec 2008 03:36:56 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.fluidinfo.com/terry/?p=409#comment-758</guid>
		<description>@Jessie

Actually I was asking a question, and looking for input/comments/opinions, not making a statement. There&#039;s even a question mark in the title. Did you need an invite to try out SimpleDB? I just remember it &quot;launching&quot; a year ago, but never had an interest in using it. I knew a couple of people who had NDA access prior to the launch (I just mailed one, asking him to comment).

Even if it&#039;s in entirely private beta, I still find it very odd that those Google counts are essentially zero. If Google can find and index this web page in well under an hour, you&#039;d think they could have found some other coder/blogger writing about SimpleDB in the last year. Not one single blogger saying &quot;we are using SimpleDB&quot; etc., in a whole year???

I&#039;m building stuff on top of S3 and EC2 too. Every single day.

Thanks a lot for the comment in any case. BTW, who is &quot;we&quot;?</description>
		<content:encoded><![CDATA[<p>@Jessie</p>
<p>Actually I was asking a question, and looking for input/comments/opinions, not making a statement. There&#8217;s even a question mark in the title. Did you need an invite to try out SimpleDB? I just remember it &#8220;launching&#8221; a year ago, but never had an interest in using it. I knew a couple of people who had NDA access prior to the launch (I just mailed one, asking him to comment).</p>
<p>Even if it&#8217;s in entirely private beta, I still find it very odd that those Google counts are essentially zero. If Google can find and index this web page in well under an hour, you&#8217;d think they could have found some other coder/blogger writing about SimpleDB in the last year. Not one single blogger saying &#8220;we are using SimpleDB&#8221; etc., in a whole year???</p>
<p>I&#8217;m building stuff on top of S3 and EC2 too. Every single day.</p>
<p>Thanks a lot for the comment in any case. BTW, who is &#8220;we&#8221;?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jessie</title>
		<link>http://blogs.fluidinfo.com/terry/2008/12/02/amazon-simpledb-a-complete-flop/comment-page-1/#comment-757</link>
		<dc:creator>Jessie</dc:creator>
		<pubDate>Tue, 02 Dec 2008 03:19:33 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.fluidinfo.com/terry/?p=409#comment-757</guid>
		<description>Quite honestly, SimpleDB has been in private beta for the last year. Only today was it made publicly accessible. The same can&#039;t be said for S3 or EC2. They&#039;ve been in public beta for 2+ years.

I work for a small start-up in the social space. We&#039;re based entirely in AWS. We leverage EC2, SQS, S3 and SimpleDB. SimpleDB is the foundation of what we&#039;ve built and we love it.

Your statement that it&#039;s a flop is entirely unfounded and comes across as quite ignorant.</description>
		<content:encoded><![CDATA[<p>Quite honestly, SimpleDB has been in private beta for the last year. Only today was it made publicly accessible. The same can&#8217;t be said for S3 or EC2. They&#8217;ve been in public beta for 2+ years.</p>
<p>I work for a small start-up in the social space. We&#8217;re based entirely in AWS. We leverage EC2, SQS, S3 and SimpleDB. SimpleDB is the foundation of what we&#8217;ve built and we love it.</p>
<p>Your statement that it&#8217;s a flop is entirely unfounded and comes across as quite ignorant.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bradley P. Allen</title>
		<link>http://blogs.fluidinfo.com/terry/2008/12/02/amazon-simpledb-a-complete-flop/comment-page-1/#comment-756</link>
		<dc:creator>Bradley P. Allen</dc:creator>
		<pubDate>Tue, 02 Dec 2008 03:10:55 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.fluidinfo.com/terry/?p=409#comment-756</guid>
		<description>I think the issue is that SimpleDB is, as of yet, neither here or there. By that I mean that either people using Amazon services are happy building standard LAMP-style apps on top of a combination of EC2, S3 and open source relational databases like MySQL, or if they&#039;re early adopters wanting column-oriented stores, are building apps using HBase/Hadoop running on EC2. IMO, SimpleDB gives you a lot of the functionality you would want with an easy-to-adopt API, but with some restrictions that are procrustean relative to HBase. Hence the lack of early-adopter uptake.</description>
		<content:encoded><![CDATA[<p>I think the issue is that SimpleDB is, as of yet, neither here or there. By that I mean that either people using Amazon services are happy building standard LAMP-style apps on top of a combination of EC2, S3 and open source relational databases like MySQL, or if they&#8217;re early adopters wanting column-oriented stores, are building apps using HBase/Hadoop running on EC2. IMO, SimpleDB gives you a lot of the functionality you would want with an easy-to-adopt API, but with some restrictions that are procrustean relative to HBase. Hence the lack of early-adopter uptake.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: terry</title>
		<link>http://blogs.fluidinfo.com/terry/2008/12/02/amazon-simpledb-a-complete-flop/comment-page-1/#comment-755</link>
		<dc:creator>terry</dc:creator>
		<pubDate>Tue, 02 Dec 2008 02:51:40 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.fluidinfo.com/terry/?p=409#comment-755</guid>
		<description>Ha - some of the results in my table are now wrong, because Google has indexed this page. I now have the only instance of &quot;recommend SimpleDB&quot; on the web, according to the big G. Likewise, this is apparently the only page on the web containing the text &quot;we are using SimpleDB&quot;.

Amazing.</description>
		<content:encoded><![CDATA[<p>Ha &#8211; some of the results in my table are now wrong, because Google has indexed this page. I now have the only instance of &#8220;recommend SimpleDB&#8221; on the web, according to the big G. Likewise, this is apparently the only page on the web containing the text &#8220;we are using SimpleDB&#8221;.</p>
<p>Amazing.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
