Top "Multi-tenant" questions

A principle in software architecture where a single instance of the software runs on a server, serving multiple client organizations (tenants).

How to create a multi-tenant database with shared table structures?

Our software currently runs on MySQL. The data of all tenants is stored in the same schema. Since we are …

sql mysql database-design multi-tenant
What is the recommended approach towards multi-tenant databases in MongoDB?

I'm thinking of creating a multi-tenant app using MongoDB. I don't have any guesses in terms of how many tenants …

mongodb multi-tenant
limits of number of collections in databases

Can anyone say are there any practical limits for the number of collections in mongodb? They write here https://docs.…

mongodb multi-tenant
Laravel: Run migrations on another database

In my app every user has its own database that created when user registered. Connection and database data (database name, …

laravel laravel-4 database-migration multi-tenant
Should I use a single or multiple database setup for a multi-client application?

I am working on a PHP application that intends to ease company workflow and project management, let's say something like …

database-design architecture database-schema multi-tenant
How to design a multi tenant mysql database

Let us say I need to design a database which will host data for multiple companies. Now for security and …

mysql database database-design multi-tenant
Overriding the bean defined in parent context in a child context

Our app has a requirement to support multi-tenancy. Each of the boarded customer might potentially override 1 or more beans or …

spring architecture jakarta-ee multi-tenant
Setting up a MultiTenantConnectionProvider using Hibernate 4.2 and Spring 3.1.1

I am currently trying to set up Hibernate for multi tenancy using the seperate Schema aproach. After working on it …

spring hibernate orm multi-tenant
Manage Connection Pooling in multi-tenant web app with Spring, Hibernate and C3P0

I'm trying to setup a multi-tenant web application, with (ideally) possibility for both Database-separated and Schema-separated approach at the same …

spring hibernate postgresql multi-tenant c3p0
How can queues be made private/secure in RabbitMQ in a multitenancy system?

I have read the Get Started guide provided by RabbitMQ and have even contributed the sixth example to stormed-amqp, so …

security rabbitmq amqp multi-tenant