Re: hundreds of schema vs hundreds of databases - Mailing list pgsql-general

From Albe Laurenz
Subject Re: hundreds of schema vs hundreds of databases
Date
Msg-id AFCCBB403D7E7A4581E48F20AF3E5DB2030576BB@EXADV1.host.magwien.gv.at
Whole thread Raw
In response to hundreds of schema vs hundreds of databases  (olivier <om@oliviermigeon.com>)
Responses Re: hundreds of schema vs hundreds of databases
Re: hundreds of schema vs hundreds of databases
Re: hundreds of schema vs hundreds of databases
List pgsql-general
> I have an application with some hundreds users, each one
> having the same
> data definitions, and each one storing up to 2 GB of data.
> A user have just access to his own data. His data will have its own
> tablespace.
>
> Therefore, it seems to me I have a choice between "one database per
> user" and "one schema per user in the same database".
>
> What is the best practice here ? Which solution will be the
> easiest to manage ?

Advantages of many databases:
- Each database is smaller.
- No danger of one user accessing another user's data (because of
  misconfigured permissions and similar).
- Guaranteed independence of each user's data.
- More scalable: If you decide that one machine or one cluster
  is not enough to handle the load, you can easily transfer some
  of the databases somewhere else.

Advantages of one database with many schemata:
- Fewer databases to administrate.

I'd probably go for many databases.

Yours,
Laurenz Albe

pgsql-general by date:

Previous
From: Jim Nasby
Date:
Subject: Re: [HACKERS] Role members
Next
From: "Albe Laurenz"
Date:
Subject: Re: Will a DELETE violate an FK?