From: | Rakesh Kumar <rakeshkumar464(at)outlook(dot)com> |
---|---|
To: | Venkata B Nagothi <nag1010(at)gmail(dot)com> |
Cc: | "pgsql-general(at)postgresql(dot)org" <pgsql-general(at)postgresql(dot)org> |
Subject: | Re: Multi tenancy : schema vs databases |
Date: | 2016-09-30 09:06:29 |
Message-ID: | DM2PR05MB6221F36C965B8F40F44D3878CC10@DM2PR05MB622.namprd05.prod.outlook.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
________________________________________
From: Venkata B Nagothi <nag1010(at)gmail(dot)com>
Sent: Friday, September 30, 2016 02:48
To: Rakesh Kumar
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: [GENERAL] Multi tenancy : schema vs databases
On Fri, Sep 30, 2016 at 10:16 AM, Rakesh Kumar <rakeshkumar464(at)outlook(dot)com<mailto:rakeshkumar464(at)outlook(dot)com>> wrote:
________________________________________
From: Venkata B Nagothi <nag1010(at)gmail(dot)com<mailto:nag1010(at)gmail(dot)com>>
Sent: Thursday, September 29, 2016 17:25
To: Rakesh Kumar
Cc: pgsql-general(at)postgresql(dot)org<mailto:pgsql-general(at)postgresql(dot)org>
Subject: Re: [GENERAL] Multi tenancy : schema vs databases
On Fri, Sep 30, 2016 at 5:18 AM, Rakesh Kumar <rakeshkumar464(at)outlook(dot)com<mailto:rakeshkumar464(at)outlook(dot)com><mailto:rakeshkumar464(at)outlook(dot)com<mailto:rakeshkumar464(at)outlook(dot)com>>> wrote:
Hi
I would like to know which technique is better for supporting multi-tenancy=
applications, going upto hundreds or even thousands of tenants.
1 - One database with difference schemas (one schema per tenant)
or
2 - One database per tenant.
Did you mean one database with-in a postgresql cluster ?
Yes. Say something like this within a PG cluster
db4978
db6234
...
100s of such databases.
That would make things worst if you are going for one database per tenant. As said by John just now, it would end up in an very complex and bad design contributing to very poor performance and high maintenance overhead.
A schema per tenant would be a good idea and its hard to say without knowing the data isolation levels you require for each tenant.
========
We require complete data isolation. Absolutely nothing should be shared between two tenants.
WHy would multiple dbs be any worse than multiple schemas in performance?
From | Date | Subject | |
---|---|---|---|
Next Message | John R Pierce | 2016-09-30 09:11:32 | Re: Multi tenancy : schema vs databases |
Previous Message | Venkata B Nagothi | 2016-09-30 06:48:37 | Re: Multi tenancy : schema vs databases |