Skip to content

An example with sql2nosql, mysql.connector, PyMongo and Docker

Notifications You must be signed in to change notification settings

facundopadilla/sql2nosql-mysql-mongodb

Repository files navigation

SQL2NoSQL Example with MySQL and MongoDB

Migrate data from SQL to NoSQL easily

SQL2NoSQL Installation

pip install sql2nosql --upgrade

Introduction

This example creates two databases using Docker, in this case, we will use MySQL and MongoDB.

For the MySQL client we will use 'mysql.connector', and for MongoDB, we will use 'PyMongo'.

For the environment variables (which are inside the docker-environment.env file), we will use a package called 'python-dotenv'.

And well, obviously, to migrate this data, we will use 'sql2nosql'.


Basic usage

To start, let's install the requirements for Python (I recommend using virtual environments, I like virtualenv a lot)

pip install -r requirements.txt

Next, if we need to test the migration (this is exactly why we decided to use Docker), we can execute the following command (if you want to edit the environment variables, you can do it from the 'docker-environment.env' file)

docker-compose --env-file ./docker-environment.env up --no-build -d
# the '--no-build' option is to not save the image and the '-d' option is to run the container in the background.

If you want to use the Makefile (only for lazy people with Linux, like me)

make up

Once this is done, you will have two containers named 'mysql_sql2nosql' and 'mongo_sql2nosql' running on host '0.0.0.0' with port '33060' for MySQL and '27018' for MongoDB. If you want to see that they are actually created, use the following command: docker ps

You indicate the SQL and NoSQL database connection data in a dictionary, and the "client"/"engine" you normally use for this conversion (I recommend PyMongo for MongoDB). (Remember that you can edit all this from the 'docker-environment.env' file).

Now it's time for the fun part, migrating :)

We are going to use 'python-dotenv' to have the same data that is in the container, we are going to read the file 'docker-environment.env' just using this package.

from sql2nosql import Migrator
from dotenv import dotenv_values

environ = dotenv_values("docker-environment.env")

sql_config = {
    "host": environ["HOST"],
    "port": int(environ["MYSQL_EXPOSE"]),
    "username": "root",
    "password": environ["MYSQL_ROOT_PASSWORD"],
    "database": environ["MYSQL_DATABASE"]
}

nosql_config = {
    "host": environ["HOST"],
    "port": int(environ["MONGO_EXPOSE"]),
    "username": environ["MONGO_USER"],
    "password": environ["MONGO_PASSWORD"]
}

c = Migrator(
    sql_config=sql_config,
    nosql_config=nosql_config,
    sql_client="mysql.connector",
    nosql_client="pymongo"
    )

c.migrate_data(tables=["customers", "employees", "offices"])

How to view the migrated data

For this, we are going to enter the MongoDB container, for this we are going to execute the following command:

docker exec -it mongo_sql2nosql bash

For lazy people like me

make mongo_bash

Once inside the Mongo container, we are going to execute the following:

mongo -u sql2nosql -p
# Enter the password, which is '1234'.

To view the databases in Mongo, run the following command:

show databases;

To select our database (which is called 'classicmodels'), we execute the following command:

use classicmodels;

To view the collections in that database:

show collections;

And finally, to view the migrated data:

db.<collection_name>.find().pretty()
# Example: db.customers.find().pretty()

Enjoy! :)

SQL2NoSQL.Example.mp4

About

An example with sql2nosql, mysql.connector, PyMongo and Docker

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published