Giter VIP home page Giter VIP logo

mongo-migrate's Introduction

mongo-migrate

NPM: mongodb-migrate


Thimble's customizations

  1. An error will be thrown if there are any duplicated migration numbers in the /migrations folder.
  2. An error will be thrown when there are any migration files that haven't been executed. For instance, if the 0001-migration and 0003-migration files were executed, but the 0002-migration file exists without being executed, an error will occur.
  3. In most cases, each Thimble microservice has two or more instances. We've implemented the migration_lock mechanism to prevent the Migration Script from running twice when two servers are started simultaneously.
  4. We've updated the mongodb NodeJS Driver to v3.6.6 to ensure compatibility with the MongoDB server version we use.
  5. A CircleCI pipeline has been added to publish this package to the private npm repository.

How the migration_lock Mechanism Works

The migration_lock mechanism operates as follows:

  1. The migration_lock has a unique index on the num field.
  2. Before executing a migration script, a record is inserted into the migration_lock. If the record is inserted successfully, the lock is obtained.
  3. If a lock cannot be obtained, the migration will fail and exit.
  4. The lock is released upon completion of the migration.

How to Contribute

Branch Strategy

  1. Create a feature branch from the master branch:
    git checkout master
    git pull
    git checkout -b dev/{feature-name}
  2. After completing the development, push the branch to the remote repository:
    git add .
    git commit -m 'commit message'
    git push --set-upstream origin dev/{feature-name}
  3. Create a pull request to merge from dev/{feature-name} into the master branch.

Development Routine

When preparing a new change to the repository, follow the steps below to ensure everything is considered:

  • Use the branch strategy above to create a new branch.
  • Prepare your code and tests (/test).
  • Run npm run test to ensure all tests pass after applying your new code.

After checking all the items above, commit your code and push it to the remote repository, then start a pull request to request a merge into the master branch.

Release

We publish this library to npm private packages so that it can be utilized as a dependency by various Thimble services as needed.

To publish a npm private package, ensure that the npm access token is correctly configured. If you are responsible for publishing, reach out to the npm account administrator if needed.

We employ GitHub's release management to streamline the release process for this library while adhering to Semantic Versioning.

The release process is automated within our CI/CD pipeline, simplifying the steps required for publishing. When a new tag is created and pushed to GitHub, the CI/CD process for publishing the package to npm is triggered automatically. Our chosen CI/CD platform is CircleCI. Detailed publishing instructions are available in the ./circleci/config.yml file.

Here are the general steps to release a new version of this library:

  1. Ensure that your code is up-to-date and thoroughly tested.
  2. Update the version in package.json before initiating the release.
  3. Merge your code into the master branch.
  4. Create a new tag and push it to GitHub. As a convention, we should create tags based on the HEAD of the master branch.
  5. The CI/CD process will be automatically triggered to publish the package to npm. If the publishing process does not start, you may need to request approval from the administrator of CircleCI.
  6. Create a GitHub release to document the release.

Alternatively, you can use GitHub's release management feature to create a tag with these steps:

  1. Ensure that your code is up-to-date and thoroughly tested.
  2. Update the version in package.json before initiating the release.
  3. Merge your code into the master branch.
  4. Create a GitHub release. While creating the release, specify a version number for your release, and then click "+ Create new tag: x.y.z on publish", For the "Target", please select the master branch.
  5. The CI/CD process will be automatically triggered to publish the package to npm. If the publishing process does not start, you may need to request approval from the administrator of CircleCI.

=============

Built starting with a framework from: https://github.com/visionmedia/node-migrate

Installation

$ npm install mongodb-migrate

Usage

Usage: node mongodb-migrate [options] [command]

Options:
	-runmm, --runMongoMigrate		Run the migration from the command line
	-c, --chdir <path>				Change the working directory (if you wish to store your migrations outside of this folder
	-dbc, --dbConfig            	Valid JSON string containing db settings (overrides -c, -cfg, & -dbn), like this:
										-dbc='{ "host": "localhost", "db": "mydbname", "port": 27017, "username": "myuser", "password": "mypwd"}'
	-cfg, --config <filename>		DB config file name
	-dbn, --dbPropName <string>	Property name for the database connection in the config file. The configuration file should
									contain something like
										{
											appDb : { //appDb would be the dbPropName
												host: 'localhost',
												db: 'mydbname',
												//port: '27017' //include a port if necessary
											}
										}

Commands:
	down [revision]		migrate down (stop at optional revision name/number)
	up [revision]		migrate up (stop at optional revision name/number)
	create [title]		create a new migration file with optional [title]

Command-line usage

NPM will install mongodb-migrate into a node_modules folder within the directory it is run. To use mongodb-migrate from the command line, you must always specify the relative path from your current directory to the mongodb-migrate directory for node to be able to find it. Such as: node ./node_modules/mongodb-migrate -runmm create (shown in examples below), or on *nix machines node ./node_modules/mongodb-migrate -runmm create.

Creating Migrations

To create a migration execute with node ./node_modules/mongodb-migrate -runmm create and optionally a title. mongodb-migrate will create a node module within ./migrations/ which contains the following two exports:

var mongodb = require('mongodb');

exports.up = function (db, next) {
	next();
};

exports.down = function (db, next) {
	next();
};

All you have to do is populate these, invoking next() when complete, and you are ready to migrate! If you detect an error during the exports.up or exports.down pass next(err) and the migration will attempt to revert the opposite direction. If you're migrating up and error, it'll try to do that migration down.

For example:

	$ node ./node_modules/mongodb-migrate -runmm create add-pets
	$ node ./node_modules/mongodb-migrate -runmm create add-owners

The first call creates ./migrations/0005-add-pets.js, which we can populate:

exports.up = function (db, next) {
	var pets = db.Collection('pets');
	pets.insert({name: 'tobi'}, next);
};

exports.down = function (db, next) {
	var pets = db.Collection('pets');
	pets.findAndModify({name: 'tobi'}, [], {}, { remove: true }, next);
};

The second creates ./migrations/0010-add-owners.js, which we can populate:

	exports.up = function(db, next){
		var owners = db.Collection('owners');
		owners.insert({name: 'taylor'}, next);
    };

	exports.down = function(db, next){
		var owners = db.Collection('owners');
		owners.findAndModify({name: 'taylor'}, [], {}, { remove: true }, next);
	};

Note, for mongodb 2.x you need to use db.collection('<collection-name>') instead of mongodb.Collection(db, '<collection-name>').

Running Migrations

When first running the migrations, all will be executed in sequence.

	node ./node_modules/mongodb-migrate -runmm
	up : migrations/0005-add-pets.js
	up : migrations/0010-add-owners.js
	migration : complete

Subsequent attempts will simply output "complete", as they have already been executed on the given database. mongodb-migrate knows this because it stores migrations already run against the database in the migrations collection.

	$ node mongodb-migrate -runmm
	migration : complete

If we were to create another migration using node ./node_modules/mongodb-migrate -runmm create coolest-owner, and then execute migrations again, we would execute only those not previously executed:

	$ node ./node_modules/mongodb-migrate -runmm
	up : migrations/0015-coolest-owner

If we were to then migrate using node ./node_modules/mongodb-migrate -runmm down 5. This means to run from current revision, which in this case would be 0015-coolecst-owner, down to revision number 5. Note that you can use either the revision number, or then full revision name 0005-add-pets

	$ node ./node_modules/mongodb-migrate -runmm down 5
	down : migrations/0015-coolest-owner
	down : migrations/0010-add-owners

Configuration

JSON String

This option allows you to pass in the database configuration on the command line, eliminating the need to store settings in a config file. The argument should be wrapped in single quotes, and all keys and string values must be in double quotes. Using this option overrides any of the other config options described below. The "port", "username", and "password" properties are optional.

$ node ./node_modules/mongodb-migrate -runmm -dbc '{ "host":"localhost","db":"mydbname","port":27017,"username":"myuser","password":"mypwd"}' up
migration : complete

Working Directory

The options for connecting to the database are read in from a file. You can configure where the file is read in from and where the migration directory root is by the -c <path> option.

	$ node ./node_modules/mongodb-migrate -runmm -c ../.. up
	migration : complete

This would set the working directory two levels above the mongodb-migrate directory, such as if you included it into another project and it was nested in the node_modules folder.

Config filename

The default configuration filename is default-config.json. If you wish to use a different filename, use the -cfg <filename> option:

	$ node ./node_modules/mongodb-migrate -runmm -cfg my-config.json up
	migration : complete

Config file property name

Inside the configuration file, mongodb-migrate expects the database connection information to be nested inside an object. The default object name is mongoAppDb. If you wish to change this you can use the -dbn <string> option:

	$ node ./node_modules/mongodb-migrate -runmm -dbn dbSettings up
	migration : complete

This would tell mongodb-migrate your config file looks something like:

	{
		"dbSettings": {
			"host": "localhost",
			"db": "myDatabaseName",
			//"port": 27017 //Specifying a port is optional
		}
	}

To connect to a replica set, use the replicaSet property:

	{
		"dbSettings": {
			"replicaSet" : ["localhost:27017","localhost:27018","localhost:27019"],
			"db": "myDatabaseName",
		}
	}

or use connectionString property:

	{
		"dbSettings": {
			"connectionString": "mongodb://user:[email protected]:27018,mongo2.host.com:27018,mongo-arbiter.host.com:27018/?w=majority&amp;wtimeoutMS=10000&amp;journal=true"
		}
	}

connectionString has priority over the other properties

All of these settings can be combined as desired, except for the up/down obviously ;)

Licence

(The MIT License)

Copyright © 2017 Austin Floyd

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

mongo-migrate's People

Contributors

afloyd avatar isaacverifly avatar raiyankamal avatar shaneyau avatar driedfish avatar d2bot avatar ribarra-thimble avatar avgur avatar timjohns avatar kmiyashiro avatar jbrechtel avatar lvela avatar dxns avatar demetriusnunes avatar bjoernwenzel-tommapps avatar siboulet avatar bryant1410 avatar oshybystyi avatar emirose avatar eduardorost avatar danguja avatar alanjames1987 avatar

Watchers

 avatar James Cloos avatar  avatar  avatar  avatar  avatar

Forkers

driedfish

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.