citusdata/django-multitenant

Name: django-multitenant

Owner: Citus Data

Description: Python/Django support for distributed multi-tenant databases like Postgres+Citus

Created: 2017-05-19 05:23:40.0

Updated: 2018-01-11 12:33:37.0

Pushed: 2018-01-03 19:42:59.0

Homepage: null

Size: 46

Language: Python

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

django-multitenant

Python/Django support for distributed multi-tenant databases like Postgres+Citus

Enables easy scale-out by adding the tenant context to your queries, enabling the database (e.g. Citus) to efficiently route queries to the right database node.

There are architecures for building multi-tenant databases viz. Create one database per tenant, Create one schema per tenant and Have all tenants share the same table(s). This library is based on the 3rd design i.e Have all tenants share the same table(s), it assumes that all the tenant relates models/tables have a tenant_id column for representing a tenant.

The following link talks more about the trade-offs on when and how to choose the right architecture for your multi-tenat database:

https://www.citusdata.com/blog/2016/10/03/designing-your-saas-database-for-high-scalability/

Other useful links on multi-tenancy:

  1. https://www.citusdata.com/blog/2017/03/09/multi-tenant-sharding-tutorial/
  2. https://www.citusdata.com/blog/2017/06/02/scaling-complex-sql-transactions/
Installation:
  1. pip install django_multitenant
Supported Django versions/Pre-requisites.

Tested with django 1.10 or higher.

Usage:
Changes in Models:
  1. In whichever files you want to use the library import it by just saying
    rt django_multitenant
     django_multitenant import *
    
  2. All models should inherit the TenantModel class. Ex: class Product(TenantModel):
  3. Define a static variable named tenant_id and specify the tenant column using this variable. Ex: tenant_id='store_id'
  4. All foreign keys to TenantModel subclasses should use TenantForeignKey in place of models.ForeignKey
  5. A sample model implementing the above 2 steps:
    s Product(TenantModel):
    store = models.ForeignKey(Store)
    tenant_id='store_id'
    name = models.CharField(max_length=255)
    description = models.TextField()
    class Meta(object):
        unique_together = ["id", "store"]
    s Purchase(TenantModel):
    ore = models.ForeignKey(Store)
    nant_id='store_id'
    oduct_purchased = TenantForeignKey(Product)
    
    Where to Set the Tenant?
  6. Write authentication logic using a middleware which also sets/unsets a tenant for each session/request. This way developers need not worry about setting a tenant on a per view basis. Just set it while authentication and the library would ensure the rest (adding tenant_id filters to the queries). A sample implementation of the above is as follows:
    s SetCurrentTenantFromUser(object):
    def process_request(self, request):
            if not hasattr(self, 'authenticator'):
                from rest_framework_jwt.authentication import JSONWebTokenAuthentication
                self.authenticator = JSONWebTokenAuthentication()
            try:
                user, _ = self.authenticator.authenticate(request)
            except:
                # TODO: handle failure
                return
            try:
                #Assuming your app has a function to get the tenant associated for a user
                current_tenant = get_tenant_for_user(user)
            except:
                # TODO: handle failure
                return
            set_current_tenant(current_tenant)
    def process_response(self, request, response):
            set_current_tenant(None)
            return response
    
    DDLEWARE_CLASSES = (
    'our_app.utils.multitenancy.SetCurrentTenantFromUser',
    
    
  7. Set the tenant using set_current_tenant(t) api in all the views which you want to be scoped based on tenant. This would scope all the django API calls automatically(without specifying explicit filters) to a single tenant. If the current_tenant is not set, then the default/native API without tenant scoping is used.
    application_function:
    # current_tenant can be stored as a SESSION variable when a user logs in.
    # This should be done by the app
    t = current_tenant
    #set the tenant
    set_current_tenant(t);
    #Django ORM API calls;
    #Command 1;
    #Command 2;
    #Command 3;
    #Command 4;
    #Command 5;
    
    Supported APIs:
  8. Most of the APIs under Model.objects.* except select_related().
  9. Model.save() injects tenant_id for tenant inherited models.
    ore.objects.all()[0]
    current_tenant(s)
    
     the below API calls would add suitable tenant filters.
    ple get_queryset()
    uct.objects.get_queryset()
    
    ple join
    hase.objects.filter(id=1).filter(store__name='The Awesome Store').filter(product__description='All products are awesome')
    
    ate
    hase.objects.filter(id=1).update(id=1)
    
    e
    oduct(8,1,'Awesome Shoe','These shoes are awesome')
    ve()
    
    ple aggregates
    uct.objects.count()
    uct.objects.filter(store__name='The Awesome Store').count()
    
    queries
    uct.objects.filter(name='Awesome Shoe');
    hase.objects.filter(product__in=p);
    
Credits

This library uses similar logic of setting/getting tenant object as in django-simple-multitenant. We thank the authors for their efforts.


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.