Questions tagged [multitenancy]
The multitenancy tag has no summary.
84 questions
4 votes
3 answers
226 views
Achieving Multitenancy with an External Identity Provider
We are designing a backend system for a large platform where users can interact with multiple products on behalf of different companies. We plan to use Keycloak as an external identity provider. The ...
0 votes
1 answer
109 views
Multi-user time based simulation - deploying new version without downtime
I am making a multiplayer strategy simulation game. The game runs in turns of fixed duration, e.g. 1 minute. For every user, there is a set of state variables that can change every turn, e.g. amount ...
1 vote
2 answers
161 views
Database per Tenant using SQL Server [closed]
I am looking to create an application which will have following architecture: Site Database (Which will run on-prem or cloud). If multiple sites then multiple database instances for each site. In ...
1 vote
0 answers
189 views
Centralized management of many single-tenant instances
Designing a SaaS application that will be used by multiple business customers (tenants). Decided to use the single tenant model - a single instance of the application and database is deployed for each ...
0 votes
2 answers
159 views
Microservice decision about isolating services
I am currently working on redesigning a microservice application. Our application is supposed to serve multiple clients and due to compliance we have to persist the data in separate datastores. We ...
0 votes
1 answer
2k views
Modular monolith vs microservices for hybrid multi-tenancy
TLDR; I'm architecting an hybrid multi-tenant app that needs to handle customizations request from customers (tenants), I'm trying to decide between modular monolith and microservices pattern, Which ...
0 votes
0 answers
110 views
Storing common data across tenants in NoSQL databases like mongoDB
We are designing a multi-tenant architecture. In our multi-tenant architecture, there are different email templates that are shared across all the tenants. Email template looks like subject: {...
0 votes
3 answers
660 views
Is it advisable to have one microservice per tenant?
I have just a few tenants on my application right now, but the number is going to increase over time. The processing logic for each tenant is slightly different from each other and right now the logic ...