npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

multi-tenant-migrate

v2.1.4

Published

`multi-tenant-migrate` (MTM) is an opinionated framework for managing multi-tenant schemas and migrations. As far as I'm aware, it's the only library written in Node.js that does what it does.

Downloads

40

Readme

Why multi-tenant-migrate?

multi-tenant-migrate (MTM) is an opinionated framework for managing multi-tenant schemas and migrations. As far as I'm aware, it's the only library written in Node.js that does what it does.

MTM features:

  • A multi-process architecture for larger workloads
  • A configurable "migration worker" pool
  • Compatibility with the very popular Sequelize ORM library
  • Transaction-based migrations, with the ability to roll-back to the previous succeeding migration in the event of failure.

This library is inspired by Django's powerful migration system. Under the hood, it uses Sequelize to open database connections, express schema definitions, and perform transactions.

Because it is schema-based, you must currently be using a Postgres database. I am not familiar with every database, but am open to supporting other databases where relevant.

What is multi-tenancy?

There are many ways to separate your tenants' data, ranging from strong physical isolation to purely logical isolation. This library supports a middleground solution, that is, schema-based separation. It only supports schema management; as such, you can use this with applications written in any lanugage.

Installation

We recommend installing multi-tenant-migrate globally:

npm i -g multi-tenant-migrate

Setup

Refer to the following directory structure throught these docs:

~/migrations
~/migrations/tenant:1546110701000-create-table-A.js
~/migrations/tenant:1546110702000-some-other-description.js
~/migrations/public:1546110703000-create-a-thing-C.js
~/node_modules/multi-tenant-migrate/...
~/tenants-config.js

migrations/: Contains public and tenant-specific migrations. All migration files prefixed with tenant: will be run on all tenants added via the "create" command. public: migrations are performed on the public schema. After this prefix, I personall typically add the UNIX timestamp since migrations are loaded in alphabetical order, within their namespace. I also like to add something descriptive after the timestamp.

The name of this directory can be set in the config.

One of the migration files in /migrations might look something like this:

// NOTE: Everything that happens within these functions occur on the same transaction.
// You can read more about the parameters in the MigrationWorker file in the repo
async function up(queryInterface, DataTypes) {
  await queryInterface.createTable('test_table', {
    id: { type: DataTypes.INTEGER },
    createdAt: { allowNull: false, type: DataTypes.DATE },
    updatedAt: { allowNull: false, type: DataTypes.DATE }
  });
}

async function down(...) {
  // down is not currently implemented.
  // ideally down would also let you specify steps=S and schema=X
}

module.exports = {
  up,
  down
}

Note that there is nothing in the migration that says anything about which schema is being migrated. The queryInterface is already connected to the schema being migrated.

You can read more about the queryInterface functions here. We're using this because under the hood we're working with the database using the amazing library Sequelize. The relevant functions are available. Obviously things like createSchema are irrelevant.

node_modules/multi-tenant-migrate/: You'll probably install this with npm or yarn

tenants-config.js: The config file is described in more detail below.

The config file contains information about how to connect to your database amongst other things. Here's a complete config file:

{
  "dbUser": "<user>",
  "dbPassword": "",
  "dbName": "dummy",
  "dbHost": "localhost",
  "dbPort": "5432",

  "tenantMapperTableName": "tenants",
  "publicSchemaDisplayName": "*PUBLIC",

  "migrationsDirectory": "./migrations",
  "migrationsTableName": "migrations"
}

The final step is to make sure the database exists. createdb <dbname> should do the trick.

Now that you're setup, you can use multi-tenant-migrate:

Commands

create.js: Creates a new tenant.

node ./node_modules/multi-tenant-migrate/create.js config=<STRING> schema=<STRING> domain=<STRING> name=<NAME>

Or if installed globally using npm i -g multi-tenant-migrate:

mtm-create config=<STRING> schema=<STRING> domain=<STRING> name=<NAME>

Specifically, the above command:

  1. Adds this tenant to "public"."tenantMapperTableName"
  2. Creates the schema in the database
  3. Create ""."migrationsTableName"

migrate-up.js: For every schema in the mapper table, runs all outstanding tenant:* migrations (in alphabetical order). For the public schema, runs all outstanding public:* migrations.

node ./node_modules/multi-tenant-migrate/migrate.js config=<STRING>

Or if installed globally using npm i -g multi-tenant-migrate:

mtm-migrate config=<STRING>

Running a migration A sample migration: all tenants have been migrated and the public schema is completing step 4 of 6.

Accessing the Mapper from application

You may want to import the MapperTable model from your application. You can do this via:

import { MapperTable } from 'multi-tenant-migrate';

or

const MapperTable = require('multi-tenant-migrate').MapperTable;

From there, you may want to use the req.headers.host to do lookup in this table.

Feature wish-list:

  1. Migrate down (and optionally specify a tenant and number of steps)
  2. Migrate status (visualize which step each tenant is currently at)
  3. Tests! Tests! Tests!
  4. Support more databases?