mysql 到 mongodb 数据迁移计划高级

发布于 2024-11-28 17:14:19 字数 181 浏览 0 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

黯然 2024-12-05 17:14:19

1)从mysql数据库获取当前schema

忘记那个……不要在非关系的东西上使用关系模式。忘记标准化和其他一切。只做自然而然的事情。 关于模式设计的官方文档可能是一个很好的阅读材料

2) 对针对 mysql 数据库的查询进行编目,排名如下:a)
使用情况/受欢迎程度/最重要的情况以及 b) 当前的响应时间
查询
3)使用上述两项创建数据模型
对最重要的查询给予最高的考虑

从 *SQL 到 NoSQL 没有什么可以 1:1 完成的。只需将查询翻译成 Mongo 的查询语言即可。要获取查询的时间,请使用 "EXPLAIN" 的等效项。

1) Get the current schema from the mysql database

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

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

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".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文