mysql 到 mongodb 数据迁移计划高级
1)从mysql数据库获取当前schema
2) 对 mysql 数据库的查询进行编目,排名如下:
a) 使用情况/受欢迎程度/最重要 b) 查询的当前响应时间
3)使用上述两项创建数据模型,高度考虑最重要的查询
这是我第一次从mysql到mongodb的数据迁移。评判我吧!这个计划看起来怎么样?
1) Get the current schema from the mysql database
2) Catalog the queries against that mysql database ranked by:
a) usage/popularity/most important and b) current response time of the query
3) Create the data model using the above two items giving highest consideration to the most important queries
It'd be my first data migration from mysql to mongodb. Judge me! How does this plan look?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
忘记那个……不要在非关系的东西上使用关系模式。忘记标准化和其他一切。只做自然而然的事情。 关于模式设计的官方文档可能是一个很好的阅读材料
从 *SQL 到 NoSQL 没有什么可以 1:1 完成的。只需将查询翻译成 Mongo 的查询语言即可。要获取查询的时间,请使用 "EXPLAIN" 的等效项。
Forget that one... don't use a relational schema on something that is not relational. Forget normalisation and everything else. Just do what comes naturally. A good reading might by the offical docs on schema design
Nothing that can be done 1:1 from *SQL to NoSQL. Just translate the queries into Mongo's Query Language. To get timings of the query, use the equivalent of "EXPLAIN".