-
Notifications
You must be signed in to change notification settings - Fork 1
Home
_ _ _ _
___(_) | _(_) | ___ _ __
/ __| | |/ / | |/ _ \| '_ \
| (__| | <| | | (_) | |_) |
\___|_|_|\_\_|_|\___/| .__/
|_|
Cikilop v.1.1 is a simple and easy to use data migration tool for MongoDB that encourages you to write your migration scripts in Python. All you need is docker (or python 3.6).
- You need to manage your migrations commit by commit in your CI pipeline. A commit can have more than one new migration, in that case you need to migrate them in order, and if commit fails, you need to revert them in reverse order.
- You want simply revert your migration from the CLI
- Your project is written in Python, you are more comfortable with pymongo then plain mongo script.
- You don't want to depend anything except docker
- You just liked it's name <3
What you need: Prepare your migration scripts, prepare your config, run cikilop. That's it.
1. Build your migration script with only two functions:
def success(client):
col = client["exampledb"]["examplecol"]
col.insert_one({"_id": 1})
def fail(client):
col = client["exampledb"]["examplecol"]
col.remove({"_id": 1})
Both functions must have an input parameter client
, which cikilop ships to you. Indeed, it is regular pymongo
MongoClient object (pymongo.MongoClient
).
2. You need to name your script as 01-xxxx.py
, it must start with a number with dash. Cikilop sorts your migration files using that number.
Caveat: When applying the migration, scripts run with ascending order (e.g. 01-mig.py
, 02-mig.py
, 03-mig.py
).
When reverting the migration, scripts run with descending order (e.g. 03-mig.py
, 02-mig.py
, 01-mig.py
).
3. Prepare your simple configuration file, Its name must be config.ENVIRONMENT.json (ENVIRONMENT should be same as you used in run command):
{
"migrations_db_name" : "migrations_db",
"migrations_coll_name" : "migration_list",
"mongo_uri" : "mongodb://username:[email protected]:27017..."
}
Note: The name you set for migrations_coll_name and migrations_db_name are used by cikilop itself. It creates a collection in specified db and stores the migration records in it.
4. Run it!
Use the wrapper script (it also uses docker):
-
curl https://raw.githubusercontent.com/skynyrd/cikilop/master/ciki.sh --output ciki.sh && chmod +x ciki.sh
-
sudo ./ciki.sh -e ENVIRONMENT -c ABSOLUTE_CONFIG_FILE_PATH -m ABSOLUTE_MIGRATIONS_FOLDER_PATH
e.g.: sudo ./ciki.sh -e local -c $(pwd)/config.local.json -m $(pwd)/migrations
To revert, add -r true
or use docker directly:
docker run -e env=local -v ABSOLUTE_CONFIG_FILE_PATH:/app/src/config/config.local.json -v ABSOLUTE_MIGRATIONS_FOLDER_PATH:/app/src/migrations skynyrd/cikilop
e.g. docker run -e env=local -v $(pwd)/config.local.json:/app/src/config/config.local.json -v $(pwd)/migrations:/app/src/migrations skynyrd/cikilop
To revert, add --revert
to docker run
command
- When migrating:
- Cikilop first checks your files in your migrations folder with its migration collection in your mongo.
- If your folder has any new files, or any files that is already reverted in mongo, cikilop runs success functions of that files. (ordering: first 01-example.py, then 02-example.py)
- When reverting:
- Cikilop gets last created migration from its migration collection. It may have more than one files.
- It checks the files in last created migration with the files in your migrations folder.
- Takes their union.
- Reverts them by calling fail functions of the files. (ordering: first 02-example.py then 01-example.py)
Thanks!
1.0.1 => 1.1
- Feature: Multiple mongo db support by allowing user to access mongo client object.
- Feature: Users can store migration records in distinct database. (It was restricted to the database script will run on)
- GNU GPL v3