TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask: How cheap is dynamodb?

7 点作者 ericthegoodking超过 10 年前
For those using dynamodb I would like to know<p>1. Your monthly costs<p>2. Your experiences is it worth it vs Mongodb e.t.c

2 条评论

aritraghosh007超过 10 年前
Let me start by saying that DynamoDB is by far the most aggressively priced cloud service. It charges per throughput (read write) units assigned to a table on an hourly basis which makes it really expensive to use. On the other side, it provides supreme scalability with extremely low latency as the catalogue claims which has been true for most of our production workloads in the last 3 years that we have run with it. DDB is a great columnar store alternative.Their query API Is gradually maturing and is now way more useful to get most job done.
评论 #8754417 未加载
MalcolmDiggs超过 10 年前
Until recently I was running a 500GB cluster (500 million records of about 1kb each) and it cost me almost a grand a month. But, most of these costs were from the provisioned throughput capacity, not the storage.<p>I never had any scaling problems, availability problems, data corruption or anything like that. It did exactly what it claimed to do.<p>Remember that Dynamo is a database as a service (it&#x27;s not something you have the option of running on your own servers). So it&#x27;s not comparable to MongoDB exactly, it&#x27;s more like a hosted MongoDB service. For me, a comparable MongoDB cluster hosted at compose.io would have cost me 6 grand a month, MongoLab would have cost me about 3 grand a month, so the pricing felt ok.<p>That being said, don&#x27;t expect MongoDB features, Dynamo is setup more like a simple key-value store (although you could force it to store documents, you won&#x27;t get the indexing&#x2F;searching&#x2F;filtering capabilities of mongo).<p>If you want fault-tolerance and practically unlimited scalability it&#x27;s a good choice. Just as long as you don&#x27;t need to get tons of data in and out all time (that&#x27;s when the provisioned throughput costs go soaring). It&#x27;s also a complete pain in the ass to export data (it&#x27;s a whole pipeline-to-mapreduce-to-hive thing).