Hello,
I have a spring boot app which uses MultiSchemaMultiTenantProcessEngineConfiguration for multitenancy where each tenant has its own schema in the same database.
The problem that has occurred is that by having a hikari datasource for each tenant with its own thread pool, we are hitting the maximum threads in Postgres db, so we want to have a shared thread pool for all tenants.
Is this possible with MultiSchemaMultiTenantProcessEngineConfiguration?
I have found this old post: How to acheive Shared Connection Pool with Multitenant Schema based approach but I was wondering if anything has changed in the meantime