Re: Postgres schema having > 20,000 schemas

Поиск
Список
Период
Сортировка
От Anand Muthukrishnan
Тема Re: Postgres schema having > 20,000 schemas
Дата
Msg-id 158B9BCD-BE51-4AA4-A92C-9E056C2C1177@gmail.com
обсуждение исходный текст
Ответ на Re: Postgres schema having > 20,000 schemas  (Bruce Momjian <bruce@momjian.us>)
Ответы Re: Postgres schema having > 20,000 schemas  (Bruce Momjian <bruce@momjian.us>)
Список pgsql-admin
We want them all in one Database.

Multi database architecture is giving high amount of overhead during database migrations and database connection
pooling.So we are evaluating single db with multi schema approach.  

Also, is there any hard limit on number of schemas and tables that can be present in one postgres database?



Sent from my iPhone

On 24-Jul-2013, at 7:51 PM, Bruce Momjian <bruce@momjian.us> wrote:

> On Wed, Jul 24, 2013 at 04:41:07PM +0530, Anand Muthukrishnan wrote:
>> Can a single Postgres database contain more than 20,000 schemas? What are the
>> implications of such a database design.
>>
>> I was reading about postgres schemas here - http://www.postgresql.org/docs/8.2/
>> static/ddl-schemas.html and I'm planning to create one schema per account in my
>> multi-tenant Ruby on Rails app. Each schema would have a set of tables to store
>> data of the relevant account.
>>
>> Each user/schema for all the features we offer, could have 50-60 tables.
>>
>> Can postgres handle all of this without any hiccups, provided I allocate a
>> large EC2 instance to host the database server ?
>>
>> By experience if any one faced trouble with such number of schemas in postgres,
>> they could share and i thought i can get more guidance to avoid such pitfalls.
>
> Well, I think the big question is whether you want them all in the same
> database (in separate schemas), or in their own databases.  You might
> want to look at this:
>
>    http://momjian.us/main/blogs/pgblog/2012.html#April_23_2012
>
> We have done some work in improving performance for databases with many
> table and many schemas.  Not sure about the 20k schema performance,
> though.  You might need to just test it.
>
> --
>  Bruce Momjian  <bruce@momjian.us>        http://momjian.us
>  EnterpriseDB                             http://enterprisedb.com
>
>  + It's impossible for everything to be true. +


В списке pgsql-admin по дате отправления:

Предыдущее
От: Elliot
Дата:
Сообщение: Re: Postgres schema having > 20,000 schemas
Следующее
От: Bruce Momjian
Дата:
Сообщение: Re: Postgres schema having > 20,000 schemas