We currently have a system where each of our users gets a database. We are now moving to a one database multi-tenant schema so one database can house many customers.
A few questions:
Is the a multi-tenant conversion tool in existence? Or is it just the process of creating a
Tenant
table and adding aTenantID
to every other table?Is there an easy way to implement multi-tenant without having to refactor our code that communicates with the database?
We have an
Odata.svc
that does all the talking to the database (our front end clients range from .net frontends to iOS devices). I read a little about using Federation to perform filtering on thetenantID
predicate so the code does not have to be changed at all. Is this possible?Is there a recommended limit on how many tenants should be in a database?
I'm gathering this is a stupid question (how long is a piece of string). We will most likely be hosting the end solution up on Azure.
Look forward to any advice anyone can give me. We are making a fundamental change to our processes so I want to be on top of it before we are under it.
Automation?
In theory, it should be possible to craft a tool that makes it much easier to perform this daunting operation (going from single-tenant to multiple-tenant). However, I don't think such a tool is in existence, given the limited audience for such a product. It would be very nice if one surfaced.
Ideas about manual conversion
Start by designing a new multi-tenant database schema. (This means merging all single-tenant databases schemas with any shared schemas you possibly have.) I'd like to make it like it would be if it was designed with no legacy considerations.
You obviously need a
Tenant
table, which will need to be referenced by many of your existing single-tenant tables with aTenant_id
column. For instance, a table with users will require this to uniquely associate users with a tenant.In the case of a simple
Products
table (withProduct_id
as primary key), it should be possible to add aTenant_id
column, yielding a table with a composite key (Tenant_id
andProduct_id
). But if you'd written the application from scratch I believe aProduct
table with no tenant referencing is the proper way. This also lets tenants share products, instead of adding duplicates. Since one tenant may have products withProduct_id
1,2,3 and another 1,2 you cannot simply merge the tables, because you cannot use the same ID twice -- you need unique primary key values. One way to solve this problem is to write a program (in Java or another high-level language) that reads all data from a tenant database into in-memory objects, then writes the data to the multi-tenant schema. The process repeats for the next tenant database, and so forth. That way you would haveProduct_id
values 1,2,3,4,5. A quick-and-dirty way would be to add a number, say 1,000, 2,000 and so on, to all ID values in each schema and simply cross your fingers that no conflicts arise.Code that communicates with database
You will need to rewrite most database queries to account for the fact that the database is now multi-tenant. This is a daunting task, especially considering the implications of introducing a bug which lets one tenant fiddle with another tenant's data. However, some techniques could make this task easier. For instance, a Tenant View Filter could reduce the amount of work required substantially.
Limit on number of tenants
I have never seen a recommendation to limit the number of tenants in a multi-tenant structure. On the contrary, a strength of the multi-tenant approach is its scalability. Today you can easily create clusters of database servers or use cloud-based solutions to add more hardware power seamlessly, as needed.
Links of interest