Re: Multitenent architecture - Mailing list pgsql-general

From Vasu Madhineni
Subject Re: Multitenent architecture
Date
Msg-id CAFacQoGSSBLj2dK3W6=pr1PdMdEo9LxpKTUZbNXvGGuS4CqN7g@mail.gmail.com
Whole thread Raw
In response to Re: Multitenent architecture  (Michel Pelletier <pelletier.michel@gmail.com>)
List pgsql-general
Hi All,

Thanks a lot for information, I will look into it and get back to you.

Regards,
Vasu Madhineni

On Sun, Jun 7, 2020 at 1:21 AM Michel Pelletier <pelletier.michel@gmail.com> wrote:

On Sat, Jun 6, 2020 at 3:14 AM Vasu Madhineni <vasumdba1515@gmail.com> wrote:
Hi Rob,

Our environment is medical clinical data, so each clinic as a tenant. Approximately 500+ tenants with 6TB data.

Thank you in advance.


There's a good article on the AWS blog on multi tenancy with postgres:


This is similar to Laurenz's second suggestion.

-Michel
 
Regards,
Vasu Madhineni

On Fri, Jun 5, 2020 at 6:09 PM Rob Sargent <robjsargent@gmail.com> wrote:


On Jun 5, 2020, at 2:54 AM, Vasu Madhineni <vasumdba1515@gmail.com> wrote:


If the data size is more than 6TB, which approach better?

On Fri, Jun 5, 2020 at 2:57 PM Laurenz Albe <laurenz.albe@cybertec.at> wrote:
On Thu, 2020-06-04 at 23:52 +0800, Vasu Madhineni wrote:
> We are planning a POC on multitenant architecture in Postgres, Could you please
> help us with steps for multitenant using schema for each application model.

For few tenants, you can keep identical tables in several schemas and
set "search_path" to select a tenant.

With many tenants, you are better off with one table that holds the
data for all clients.  You can use Row Level Security to have each
tenant see only his or her data, and it might be a good idea to
use list partitioning on the tenant ID.

Yours,
Laurenz Albe
--
Cybertec | https://www.cybertec-postgresql.com

The question is How many separate data owners?

pgsql-general by date:

Previous
From: Rene Romero Benavides
Date:
Subject: Re: gdal, proj and other postgis dependencies missing in postgres repos
Next
From: Michael Paquier
Date:
Subject: Re: Logical replication - ERROR: could not send data to WAL stream:cannot allocate memory for input buffer