You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ sudo apt-get install libmysqlclient-dev
$ sudo gem install mysql
Install mongify
$ sudo gem install mongify
Create Config file
sql_connection do
adapter "mysql"
host "localhost"
username "<Username>"
password "<Password>"
database "<DBName>"
batch_size 1000000000 # This is defaulted to 10000 but in case you want to make that smaller (on lower RAM machines)
encoding "utf8"
end
mongodb_connection do
host "localhost"
database "<DBName>"
username "<Username>"
password "<Password>"
encoding "utf8"
end
I have some concern regarding mongify I hope you can help me in this regard, just I need some clarification on the below mentioned questions:
1 . How to ensure the data is not corrupted while migrating ?
2. data types conversion from sql to mongo
3 . Check what permissions are required for Mongify to work ?For example, the environment in the Bank is restricted
4 . What is “check” doing ? (Mean it only checks the connection or checks the schema also)
5 . How is Mongify working ? What is the mechanism ?
6 . Constraints – if any for mongify – like linux / ubuntu / versions.
Hey,
I have some concern regarding mongify I hope you can help me in this regard, just I need some clarification on the below mentioned questions:
1 . How to ensure the data is not corrupted while migrating ?
2. data types conversion from sql to mongo
3 . Check what permissions are required for Mongify to work ?For example, the environment in the Bank is restricted
4 . What is “check” doing ? (Mean it only checks the connection or checks the schema also)
5 . How is Mongify working ? What is the mechanism ?
6 . Constraints – if any for mongify – like linux / ubuntu / versions.
Kindly help me
Thanks in advance