3,112 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
109
views
Blazor Server RenderMode
I've been working on this issue for sometime, not constant, but I would work on it then stop then go back. So this is a multi-tenant Blazor server app. I have a CustomAuthenicationStateProvider that ...
Advice
0
votes
0
replies
28
views
How to apply multi-tenancy pre-filters to all Spring Data Elasticsearch repository queries (including findById and custom @Query)?
I am trying to implement multi-tenancy in a Spring Boot application using Spring Data Elasticsearch.
My goal is:
Automatically inject a tenantId filter into all Elasticsearch queries
This must apply ...
Best practices
0
votes
3
replies
48
views
Implementing fair sharing in multi tenant applications
I'm building a multi tenant database and I would like to implement fair sharing of resources across multiple tenants. Let's say I have many concurrent users, each with its custom amount of resources ...
0
votes
0
answers
93
views
'django.db.utils.ProgrammingError: relation "users_user" does not exist' error while running ' python manage.py migrate_schemas --shared'
AccrediDoc - Multi-tenant Accreditation Management System
A comprehensive Django-based multi-tenant accreditation management system designed for healthcare organizations in India. Manage NABL, NABH, ...
2
votes
1
answer
137
views
How to dynamically create tenants?
We recently decided to move from MassTransit to Wolverine for sending messages using Azure Service Bus. However, we’ve run into some issues with our multi-tenant setup.
Our setup looks as follows:
...
1
vote
1
answer
78
views
How to handle error during customized scoped dependency injection
I have applied the multi-tenant location for EF Core database applying customize schema per tenant in my ASP.NET Core Web API project.
To do that the client send request through the API by setting ...
1
vote
2
answers
170
views
Laravel stancl/tenancy: Tenant migrations "Nothing to migrate" (separate tenant DBs, migrations in database/migrations/tenant)
I am running tenant new migration (orders_table migration) that live in database/migrations/tenant/ . Each tenant has its own database (tenant_1, tenant_2, tenant_3, ...)
and there are some tables ...
0
votes
0
answers
53
views
Unable to acquire new SharePoint Online access token across tenants in Azure AD SSO app (AADSTS50076 MFA error)
We have an Azure AD Single Sign-On (SSO) .NET 8 Core application that transfers documents from one SharePoint tenant to another.
Based on the selected tenant, we retrieve sites, libraries, etc.
We ...
0
votes
0
answers
71
views
Laravel 12 – Isolating queues per tenant in a multi-tenant SaaS (database driver)
I’m building a multi-tenant SaaS application with Laravel 12 using the database queue driver.
Problem
Each tenant should have its own isolated queue so that one tenant’s heavy background jobs don’t ...
2
votes
0
answers
108
views
Hibernate @TenantId not applied to update/delete statements in discriminator-based multitenancy
I’m experimenting with Spring Data and Hibernate to implement multi-tenancy in an existing app using a discriminator column with @TenantId on the entities. I have seen that hibernate includes tenant ...
0
votes
0
answers
52
views
Django-Tenant-Users: IntegrityError on permissions_usertenantpermissions_profile_id_key when creating a tenant
I’m using Django with django-tenants and django-tenant-users to manage multi-tenant accounts.
I’m having an issue when creating a new tenant:
When I try to create a new user + its tenant through my ...
1
vote
0
answers
77
views
Is it possible to use Camunda 7 with multi-tenancy by schema using only one ProcessEngine?
I’m working with Camunda 7.23 and I need multi-tenancy by schema (each tenant has its own database schema, but all share the same application).
The official documentation states that job execution is ...
2
votes
0
answers
156
views
Tenancy for Laravel - Global Users Table
I am using https://tenancyforlaravel.com/ on a fresh Laravel 12 application. I am having an issue with the users. I want all my users to reside in the central database only and not inside individual ...
0
votes
0
answers
131
views
How to Support SAML Multitenancy with spring-security-saml2-service-provider 6.3.9 and Microsoft Entra?
We want to publish a multitenant app for external tenant users. Right now, We've already established a single-tenant mechanism for our web application using spring-security-saml2-service-provider 6.3....
1
vote
3
answers
105
views
Global query filter based on tenantid from http header is not working
I'm implementing multi-tenancy in my .NET Core application. The TenantId comes from the client application via an HTTP header. I have a service called ITenantProvider where I store the tenant ID, and ...