Mongoose Multitenant
This package facilitates horizontal multitenancy in one MongoDB database, obviously using Mongoose as the interaction layer.
Basics
With this package, you can use one schema per model, as you would normally with Mongoose, and then use special methods and syntax apply that schema to different tenant collections.
Instead of using mongoose.model(name, schema)
to compile your model, you would now use mongoose.mtModel(name, schema)
. This still creates the Mongoose model as normal, but adds some additional functionality. Specifically, you can retrieve a model for a specific tenant using this syntax:
mongoose.mtModel('tenantId.modelName')
When that happens, the package will check if that model for that tenant has already been compiled. If not, it creates a copy of the base model's schema, updates any refs
to other collections, and then compiles a new model with the new schema, with a collection name of tenantId__originalCollectionName
. All per-tenant models are lazy-loaded, meaning that they won't take up memory until they are needed.
Usage
Pull in requirements
var mongoose = ;; mongoose;
Changing collection delimiter
Thanks to @watnotte for this - if you want to change the delimiter from the default __
you can do the following:
'CUSTOM_DELIMITER';
Create a schema
With mongoose-multitenant you use all the same syntax for schema creation as you normally do with Mongoose, with the addition of the $tenant
property on document references. This tells the system whether it is a reference to a document for the same tenant (true
) or a root-level document without a tenant (false
)
var barSchema = title:String _foos: type:mongooseSchemaTypesObjectId ref:'Foo' $tenant:true ; var fooSchema = title:String date:Date;
Compile the models
Instead of using mongoose.model
to compile, you use mongoose.mtModel
.
mongoose;mongoose;
Use the models
Basic usage:
// This returns a new Foo model for tenant "tenant1"var fooConstructor = mongoose;var myFoo = title:'My Foo' date:; myFoo;
And make use of refs/populate:
var barConstructor = mongoose;var myBar = title:'My Bar' _foos:myFoo_id; myBar;
But you can't populate across tenancies:
var tenant2Bar = mongoose;var newBar = title:'New Bar' _foos:myFoo_id; newBar;
Helper Methods
In addition to this base functionality, each per-tenant model gets two new schema methods: getTenantId()
and getModel()
.
getTenantId()
This does what you think it does - returns the tenant ID for the model.
getModel()
This can be used in your mongoose middleware methods to get the related model class. E.g.
barSchema;
Credits
- Brian Kirchoff for his great mongoose-schema-extend package