We are planning to move from mysql to mongoDB. I'll like to know is there a tool or any other resource which can assist me in creating a migration plan. For example ( The table with company, shall move first, then user details, etc etc) so that the migration can be smooth.
|
closed as not a real question by N.B., Wh1T3h4Ck5, Linus Kleen, Sam I am, Graviton Nov 14 '12 at 13:40
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
You can't just simply migrate your MySQL schema to MongoDB (or any other document database store). The way how you would store data is totally different. Remember that there are no joins, and that you most likely need to denormalise data, and embed certain data into other documents. This is not something that can be automated. The databases are fundamentally different here. You need to look from the application side how you read and write data, where you are doing joins, how you can best architect your new schema to work with MongoDB, instead of just using it badly as a RDBMs. Search on "MongoDB schema design" to get an overview of what things you need to consider. |
|||
|
|
First, you have to know your relationship of your tables and quries.
|
|||
|
|