All Projects → DoubleCiti → Mongodb Migrations

DoubleCiti / Mongodb Migrations

Licence: gpl-3.0
A database migration tool for MongoDB

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Mongodb Migrations

Nodejs Roadmap
【Nodejs-Roadmap】侧重于 Node.js 服务端的开发指南,公众号 “Nodejs技术栈”
Stars: ✭ 2,278 (+7248.39%)
Mutual labels:  mongodb, devops
Mcw Cloud Native Applications
MCW Cloud-native applications
Stars: ✭ 184 (+493.55%)
Mutual labels:  mongodb, devops
Spm Agent Mongodb
Sematext Agent for monitoring MongoDB
Stars: ✭ 7 (-77.42%)
Mutual labels:  mongodb, devops
Kong
🦍 The Cloud-Native API Gateway
Stars: ✭ 30,838 (+99377.42%)
Mutual labels:  devops
Project16 B Account Book
👥👤👥뭐야..👤👥👥👤👥👤 이거쓰면 부자된다고..?👥👤👥👤👤👥👥 웅성웅성..👤👥👤👥👤궁금하다..👥👥👤👥
Stars: ✭ 28 (-9.68%)
Mutual labels:  mongodb
Jwt Node Vue
Repositório responsável pelo primeiro projeto da série de vídeos: Coding Stuff.
Stars: ✭ 29 (-6.45%)
Mutual labels:  mongodb
Vue Admin Spa Api
本项目使用node.js+express+MongoDB编写后端接口代码,主要为vue-admin-spa(前端项目)提供在线api接口
Stars: ✭ 31 (+0%)
Mutual labels:  mongodb
Bibi
An e-commerce fullstack solution for Flask 出口电商全栈解决方案
Stars: ✭ 914 (+2848.39%)
Mutual labels:  mongodb
Git2kube
Simple tool for syncing Git repository with K8s ConfigMap or Secret
Stars: ✭ 29 (-6.45%)
Mutual labels:  devops
Ihealth site
iHealth 项目的后台程序(一个基于 Django 和 MongoDB 的 Web 后端)
Stars: ✭ 29 (-6.45%)
Mutual labels:  mongodb
Mongocrypt
An encryption library for node.js
Stars: ✭ 29 (-6.45%)
Mutual labels:  mongodb
Platform As Code Example
Platform as Code - Example
Stars: ✭ 28 (-9.68%)
Mutual labels:  devops
Digital Currency
Create your own Digital Currency with this self-hosted Web App. Check out the Demo website
Stars: ✭ 30 (-3.23%)
Mutual labels:  mongodb
Awesome Scalability
The Patterns of Scalable, Reliable, and Performant Large-Scale Systems
Stars: ✭ 36,688 (+118248.39%)
Mutual labels:  devops
Sandpolis
Experimental remote monitoring and management
Stars: ✭ 30 (-3.23%)
Mutual labels:  devops
Sentry
Sentry is cross-platform application monitoring, with a focus on error reporting.
Stars: ✭ 29,700 (+95706.45%)
Mutual labels:  devops
Pingidentity Devops Getting Started
Ping Identity Devops Program
Stars: ✭ 30 (-3.23%)
Mutual labels:  devops
Placementmnit
Official Placement Portal : MNIT Jaipur
Stars: ✭ 29 (-6.45%)
Mutual labels:  mongodb
Iceci
IceCI is a continuous integration system designed for Kubernetes from the ground up.
Stars: ✭ 29 (-6.45%)
Mutual labels:  devops
Starter Nodejs Rest
DEPRECATED!! Starter for a Node.js REST Application using MongoDB and JSON Web Token
Stars: ✭ 29 (-6.45%)
Mutual labels:  mongodb

mongodb-migrations

MongoDB is a great NoSQL and schema-less database, but if already have data in database and you changed data schema, you need a migration tool to update your existing data.

How to install

  • use pip

    $ pip install mongodb-migrations
    
  • from source code

    $ python setup.py install
    

How to use it

  1. create a fold named migrations
  2. create a python file with name in form of TIMESTAMP_description.py , i.e.20160320145400_description.py, otherwise migration file won't be found.
  3. in 20160320145400_description.py create a class named Migration and extends BaseMigration
  4. implement upgrade method
  5. use cli mongodb-migrate to run migrations
  6. metastore is an optional parameter of collection name where it stores the previous migrations

If you don't wish to use the CLI, you can override the MigrationManager -> create_config and then call MigrationManager -> run. Example execution:

    manager = MigrationManager()
    manager.config.config_file = "foobar.ini"
    manager.config._from_ini()
    manager.run()

You can also use the same config to keep multiple keys, the manager allows you access by using:

   ini_config_parser = manager.config.ini_parser
   ini_config_parser.get('foo','bar')

Configuration

mongodb-migrations will try to load config.ini first, if it's not found, default values will be used. If any command line argument is provided, it will override config from configuration file.

Database name or Url is mandatory

config.ini example

[mongo]
host = 127.0.0.1
port = 27017
database = test
migrations = migrations
metastore = database_migrations

alternative config.ini example

[mongo]
url = mongodb://127.0.0.1:27017/test
migrations = migrations

auth-db config.ini example

[mongo]
url = mongodb://127.0.0.1:27017/admin
username = admin
password = secret123
database = test
migrations = migrations
metastore = database_migrations

command line arguments example

mongodb-migrate --host 127.0.0.1 --port 27017 --database test --migrations examples

alternative command line example

mongodb-migrate --url mongodb://127.0.0.1:27017/test --migrations examples

Example

Migration files are located in examples, run following command to run migrations:

$ MONGODB_MIGRATIONS_CONFIG=examples/config.ini mongodb-migrate

For Downgrading the migrations, you need to pass a command line switch --downgrade

To upgrade/downgrade only to a specific migration, use --to_datetime. This command will upgrade to the migration with prefix 20191115180633:

mongodb-migrate --url mongodb://127.0.0.1:27017/test --migrations examples --to_datetime 20191115180633

Getting involved

  • if you find any bug or need anything, please log an issue here: Issues

Contributors

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].