What's the point of using Amazon SimpleDB? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T15:10:28Z http://stackoverflow.com/feeds/question/648270 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/648270/whats-the-point-of-using-amazon-simpledb 7 What's the point of using Amazon SimpleDB? Otigo 2009-03-15T18:19:28Z 2009-06-27T08:08:50Z <p>I thought that I could use SimpleDB to take care of the most challenging area of my application (as far as scaling goes) - twitter-like comments, but with location on top - till the point when I sat down to actually start implementing it with SDB.</p> <p>First thing, SDB has a 1000 bytes limitation per attribute value, which is not enough even for comments (probably need to break down longer values into multiple attributes). </p> <p>Then, maximum domain size is 10GB. The promise was that you could scale up without worrying about database sharding etc., since SDB will not degrade with increasing loads of data. But if I understand correctly, with domains I would have exactly the same problem as with sharding, ie. at some point need to implement data records' distribution and queries across domains on application level.</p> <p>Even for the simplest objects that I have in the whole application, ie. atomic user ratings, SDB is not an option, because it cannot calculate an average within the query (everything is string based). So to calculate average user rating for an object, I would have to load all records - 250 at a time - and calculate it on application level.</p> <p>Am I missing something about SDB? Is 10GB really that much of a database to get over all SDB limitations? I was honestly enthusiastic about taking advantage of SDB, since I use S3 and EC2 already, but now I simply don't see a use case.</p> http://stackoverflow.com/questions/648270/whats-the-point-of-using-amazon-simpledb/648284#648284 2 Answer by Vasil for What's the point of using Amazon SimpleDB? Vasil 2009-03-15T18:26:53Z 2009-03-15T18:26:53Z <p>If the storage size per attribute is the problem you can use S3 to store larger data, and store the links to the s3 objects in SDB. S3 is not just for files, it's a generic storage solution.</p> http://stackoverflow.com/questions/648270/whats-the-point-of-using-amazon-simpledb/648291#648291 1 Answer by Nolte Burke for What's the point of using Amazon SimpleDB? Nolte Burke 2009-03-15T18:30:28Z 2009-03-15T18:30:28Z <p>Amazon is trying to get you to implement a simple object database. This is primarily for speed reasons. Think of the SimpleDB records as being a pointer/key to an element in S3. This way you can run queries (slow against SimpleDB to get results lists or you can directly hit S3 with a key (fast) to pull the object when you need to retrieve or modify records one-at-a-time.</p> http://stackoverflow.com/questions/648270/whats-the-point-of-using-amazon-simpledb/678383#678383 1 Answer by Bill Karwin for What's the point of using Amazon SimpleDB? Bill Karwin 2009-03-24T17:22:26Z 2009-03-24T17:22:26Z <p>The limits seem to apply to the current <strong>Beta</strong> release. I assume they will allow larger databases in the future, after they figure out how they can serve the demand economically. Even with the limits, a database of 10GB that supports high scalability and reliability is a useful and cost-effective resource.</p> <p>Note that scalability refers to the ability to keep a <strong>steady and shallow performance curve</strong>, while the volume of data or the volume of requests grows. It does not necessarily mean optimal performance, nor does it mean very high capacity data storage.</p> <p>Amazon SimpleDB also offers a <strong>free service tier</strong>, so you can store up to 1GB, transfer up to 1GB/month, using up to 25 hours of machine time. While this limit sounds very low, the fact that it's free allows some low-scale customers to use the technology, without investing in a big server farm.</p> http://stackoverflow.com/questions/648270/whats-the-point-of-using-amazon-simpledb/825626#825626 7 Answer by marcc for What's the point of using Amazon SimpleDB? marcc 2009-05-05T16:04:46Z 2009-05-05T16:04:46Z <p>I use SDB on a couple of large-ish applications. The 10 GB limit per domain does worry me, but we are gambling on Amazon allowing this to be extended if we need it. They have a request form on their site if you want more space.</p> <p>As far as cross domain joins, don't think of SDB as a traditional database. During the migration of my data to SDB, I had to denormalize some of it so I could manually do the cross domain joins. </p> <p>The 1000 byte per attribute limitation was tough to work around also. One of the applications I have is a blog service which stores posts and comments in the database. While porting it over to SDB, I ran into this limitation. I ended up storing the posts and comments as files in S3, and read that in my code. Since this server is on EC2, the traffic to S3 isn't costing anything extra.</p> <p>Perhaps one of the other problems to watch out for is the eventual consistency model on SDB. You can't write data and then read it back with any guarantee that the newly written data will be returned to you. Eventually the data will be updated.</p> <p>All of this said, I still love SDB. I don't regret switching to it. I moved from a SQL 2005 server. I think I had a lot more control with SQL, but once giving up that control, I have more flexibility. Not needing to pre-define the schema is awesome. With a strong and robust caching layer in your code, it's easy to make SDB more flexible.</p> http://stackoverflow.com/questions/648270/whats-the-point-of-using-amazon-simpledb/930304#930304 0 Answer by Ashley Tate for What's the point of using Amazon SimpleDB? Ashley Tate 2009-05-30T18:38:32Z 2009-05-30T18:38:32Z <p>I'm building a commericial .NET application which will use SimpleDB as its primary data store. I'm not yet in production, but I've also been building out an open-source library that addresses some of the issues with using SimpleDB vs an RDBS. Some of the features on my roadmap are related to the issues you've mentioned:</p> <ul> <li>Transparent partitioning of data</li> <li>Pseudo transactionality </li> <li>Transparent spanning of attributes to surpass the 1000 byte limit</li> </ul> <p>SimpleDB is still under active development and will certainly end up with many features it doesn't have today (some added to the core system and some in the code libraries).</p> <p>The .NET library is <a href="http://www.codeplex.com/SimpleSavant" rel="nofollow">Simple Savant</a>.</p> http://stackoverflow.com/questions/648270/whats-the-point-of-using-amazon-simpledb/1052362#1052362 1 Answer by Kevin Peterson for What's the point of using Amazon SimpleDB? Kevin Peterson 2009-06-27T08:08:50Z 2009-06-27T08:08:50Z <p>I have about 50GB in SimpleDB, sharded across 30 domains. I use this to allow multiple keys on objects stored in S3, and also to reduce my S3 costs. I haven't played with using SimpleDB for full-text search, but I would not attempt it.</p> <p>SimpleDB works, it's easy, and so on, but it isn't the right set of features for every situation. In your case, if you need aggregation, SimpleDB is not the right solution. It is built around the school of thought that the DB is just a key value store, and aggregation should be handled by an aggregation process that writes the results back to the key value store. This is exactly what is needed <em>for some applications.</em></p> <p>Here is <a href="http://kdpeterson.net/blog/2009/06/pack-multiple-small-objects-in-s3-for-cost-savings.html" rel="nofollow" title="Pack multiple small objects in s3 for cost savings">a description of how I pinch pennies using SimpleDB</a></p>