TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

A Tour of Amazon's DynamoDB

143 pointsby timfover 13 years ago

7 comments

jedschmidtover 13 years ago
I've been waiting for Mathias to write something like this, and I'm glad he didn't waste any time diving in. For those who don't know him, he has more breadth in the area of emerging datastores than anyone I know; he literally wrote the book on Riak[1].<p>I've also been acquainting myself with the DynamoDB API over the past week, and am building a node.js binding that I hope will abstract away most of the esoteric aspects of interacting with it. It has full API coverage currently and is tested in Travis[3], so now I'm writing the high-level interface. So far I've covered about half of the operations DynamoDB offers, but would love to hear any ideas/feedback.<p><pre><code> [1] http://riakhandbook.com/ [2] https://github.com/jed/dynamo [3] http://travis-ci.org/jed/dynamo</code></pre>
评论 #3530430 未加载
jbellisover 13 years ago
I'm still struck by what a strong endorsement DynamoDB is of the design decisions we've been making in Cassandra over the last couple years. Composite keys, distributed counters, ...<p>More details: <a href="http://www.datastax.com/dev/blog/amazon-dynamodb" rel="nofollow">http://www.datastax.com/dev/blog/amazon-dynamodb</a>
评论 #3530368 未加载
评论 #3532027 未加载
评论 #3529685 未加载
评论 #3530038 未加载
cleaverover 13 years ago
DynamoDB is not open source, at least according to a blog comment by Jeff Barr of AWS. (<a href="http://aws.typepad.com/aws/2012/01/amazon-dynamodb-internet-scale-data-storage-the-nosql-way.html" rel="nofollow">http://aws.typepad.com/aws/2012/01/amazon-dynamodb-internet-...</a>)<p>I'm certainly not going to commit to platform lock-in like that. I know a lot of folks were hit hard by Googles app engine price changes and it could happen again here with DynamoDB.
评论 #3530064 未加载
评论 #3531523 未加载
sicularsover 13 years ago
I would second Mathias' thoughts in that this does feel more bigtable/column oriented than traditional dynamo. Dynamo and its derivative, Riak (not from amazon), make no attempt to determine data types or schema in any way. The fact that dynamodb can do range scans and has various counting features leads me to believe that it is more hybridized along the lines of Cassandra. Either way, it is a welcome addition to the nosql toolset that developers have to chose from today. I will certainly look at it more closely.
评论 #3530725 未加载
taylorbuleyover 13 years ago
Does anyone know in which language DynamoDB is implemented? I've read somewhere that SimpleDB is done in Erlang. Is that the case with DynamoDB as well? I've been reading about Ets and Dets in Erlang and it makes me wonder whether they have anything to do with either of these data stores.
评论 #3530062 未加载
antirezover 13 years ago
About pricing, it is interesting how caching is apparently not an effective option to reduce the bill in a significant way since data size is a big component of price.
评论 #3530673 未加载
SaltwaterCover 13 years ago
The API doesn't bother me as much as the temporary authentication via STS. Temporary credentials for database access? Seriously? I am the only one who sees how ridiculous this is?
评论 #3531124 未加载