从 SimpleDB 导出到 Mongo?
从 SimpleDB 迁移到 MongoDB 相当简单吗?有什么需要注意的吗?有什么限制吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
从 SimpleDB 迁移到 MongoDB 相当简单吗?有什么需要注意的吗?有什么限制吗?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
约翰尼,gate 击中了所有亮点,我只是在这里添加一些热门话题项目,希望能帮助您更快地决定是否要这样做:
所以我想我是否必须总结一下:
希望有帮助。
Johnny, gate's hit all the highlights, I'm just adding some hot-topic items here that will hopefully help you decide faster if you want to do this or not:
So I guess if I had to sum it all up:
Hope that helps.
我猜它们都是文档存储。
因此,SimpleDB 是一个托管数据存储,具有用于操作数据的 REST/SOAP API。 MongoDB 是一个在您自己的硬件上运行的数据存储引擎,它使用一系列 BSON 命令来操作数据,但大多数用户运行受支持的驱动程序之一。
将会有所不同的事情:
相同的事情:
理论上,您可以将数据从SimpleDB 到 MongoDB,但是数据的其他移动部分肯定需要一些跑腿工作。
尽管如此,我还是鼓励您测试 MongoDB,因为您可能会发现它比 SimpleDB 提供了成本优势。
I guess they are both document stores.
So SimpleDB is a hosted data storage with a REST/SOAP API for manipulating data. MongoDB is a data storage engine that you run on your own hardware it uses a series of BSON commands for manipulating data, but most users run one of the supported drivers.
Things that will be different:
Things that will be the same:
In theory, you can just dump your data from SimpleDB to MongoDB, but there's definitely some legwork involved for the other moving parts of your data.
All that said, I do encourage you to test MongoDB as you may find it provides cost benefits over SimpleDB.