Questions tagged [multi-tenant]

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

Multi-tenancy allows multiple users (tenants) to use an application which runs on the same computer. This can be done in two ways:

  • Multiple instances
  • Share instance

The multiple instances pattern runs an application instance for each user, for example by using virtual machines. The obvious downside of this is the resource requirement, as each instance requires allocated memory.

Multi-tenancy is also regarded as one of the essential attributes of Cloud Computing and Software as a Service (SaaS)

3009 questions
1
vote
2 answers

How to achieve multi tenancy?

I am new to cloud-computing. And while learning basic concepts got stuck with with- How design a system in which a single instance of a software (SaaS) can be used by multiple user at same time? I understand what does it mean by multi-tenant, but…
Sam
  • 859
  • 3
  • 12
  • 23
1
vote
1 answer

multi-tenant and use of ruby delegate vs NoSQL for tenant context

I have a multi-tenant app (rails backend) and I need to mix a tenant-agnostic pre-populated list of items with tenant specific attributes. Was wondering if I anyone has used delegate to get this done and had ok performance vs. venturing out of…
Vijay
  • 209
  • 4
  • 18
1
vote
1 answer

Is Multi-Tenancy the correct approach where there is interactivity

I'm working on a project that is set up as multi-tenant, separate users, data stores, etc. However, as I look further into different scenarios, I see things that may not mix well with multi-tenancy, or at least as I understand it. Tenants can be…
Dan Friedman
  • 4,941
  • 2
  • 41
  • 65
1
vote
0 answers

DKIM DNS entries for multiple subdomains in mailgun

I use Mailgun for sending mails in my multi-tenant application. Each tenant is using different (sub)domain in mailgun to send mails around. For example: Tenant 1 - tenant1.example.com Tenant 2 - tenant2.example.com ... I would like to be able to…
Dawid Pytel
  • 2,750
  • 1
  • 23
  • 30
1
vote
1 answer

Multi-tenancy - Create tables up-front or as needed?

I'm currently working on a SaaS type application, and for multi-tenancy I've settled on one database per user, with each database containing all tables required by the functionality the user is entitled to (have payed for). The application is…
Mads Mogenshøj
  • 2,063
  • 1
  • 16
  • 23
1
vote
1 answer

When I click on connect to quickbooks, the resulting pop up window has a blank session. How can I fix this?

I'm using QuickBooks PHP DevKit from consolibyte. I was unable to locate the version number, but it was a recent nightly build. I am attempting to connect to a QuickBooks Online installation using the sample files…
starshine531
  • 601
  • 5
  • 19
1
vote
2 answers

Apartment gem: How to rename tenant?

Can we able to rename the tenant in apartment-gem or we have to drop the tenant and create a new one to achieve this. Please provide me some suggestions
Preethi Mano
  • 445
  • 1
  • 7
  • 18
1
vote
0 answers

Trying to implement a multi-tenant MVC4 application with different Databases via WCF

I have a fully functional MVC4 application which utilizes WCF endpoints and Entity Framework 4. The problem now is that I need to make the system Multi-tenant with the following setup:- 1 MVC Application host 1 WCF Service Layer Separate Databases…
1
vote
0 answers

Send API key with JWT Auth - is it possible?

I have created an API which uses JWT to authorise users, and this works great of course. Some parts of my API need to be accessed without the user logging in. I would call them an anonymous user or public access to the API. However, there must be…
Leon
  • 1,851
  • 3
  • 21
  • 44
1
vote
0 answers

Memcached clustering with zero downtime

I am having problems in applying memcached clustering in my multi-tenant system. Actually I have applied memcached as my first phase of project - the result is my system is has been supported by two tomcat instances, if one fails second tomcat…
1
vote
0 answers

Register a Tenant in Azure

I'm developing a multi-tenant application. I've been developing for years, but i'm new to Azure development. I'm trying to get pointed in the right direction regarding a specific area. I have a requirement to Register a Tenant. For example, a…
Michael Wilson
  • 1,207
  • 2
  • 12
  • 16
1
vote
1 answer

are there any multitenant cms based on .net

Can you recommend me any multitenant CMS? I am looking for the following features: One different site per tenant Each tenant must have its own independent database Different authentication methods Be able to create custom forms with custom fields,…
Luis Valencia
  • 32,619
  • 93
  • 286
  • 506
1
vote
1 answer

Using custom test runner with pytest-django and multi-tenant database

I'm having trouble making pytest work with my setup. I'm using and django-tenant-schemas to handle my multi-tenant db. The idea is that I need to create a Tenant before migrations are applied. Here's my custom runner: from django.test.runner import…
bpipat
  • 3,700
  • 4
  • 20
  • 22
1
vote
0 answers

Is achieving ElasticSearch multitenancy via multiple indexes a good idea when the number of indexes may run very large

I am looking for suggestions with regards to ElasticSearch index partitioning for a multitenant index. Following is my scenario: 1) Customer content containers holding content items (pdfs,docs with metadata) in the order of 100s of thousand. 2)…
Swami PR
  • 793
  • 1
  • 8
  • 15
1
vote
1 answer

Multiple database per application. Is this better security?

I am working on a project which in my mind should only be about 1 database. However, the client insists that separating data into multiple databases would be more secure in the event of a security breach. It kinda makes sense but in the end I think…
Cristian
  • 2,390
  • 6
  • 27
  • 40