Re: pgpool - Mailing list pgsql-general

From Peter Eisentraut
Subject Re: pgpool
Date
Msg-id 200501132206.13221.peter_e@gmx.net
Whole thread Raw
In response to pgpool  (John Cunningham <fatbobo@gmail.com>)
Responses Re: pgpool  (John Cunningham <fatbobo@gmail.com>)
Re: pgpool  (Tatsuo Ishii <t-ishii@sra.co.jp>)
List pgsql-general
John Cunningham wrote:
> concerned that if I drop the number of connections to less than the
> number of databases I have, that pgpool would open the limit of
> connections, hold them open and not allow any connections to the
> remaining databases.  Is this a concern?  If I set up pgpool will I
> have to have the same number of connections as I have databases?

That depends on how you configure pgpool.  pgpool is not aware of the
connection limit count in the PostgreSQL server, so it will happily
open connections until there are no more slots available.

pgpool will require max_pool * num_init_children connection slots.
max_pool should be the number of database/user combinations you use
(300 in your case, assuming only one database user account), and
num_init_children should be on the order of how many concurrent
connections you expect to each combination ("several" in your case).
So you should have at least 300 * several PostgreSQL connection slots,
which is probably more than the 1000 or so that is the default.

--
Peter Eisentraut
http://developer.postgresql.org/~petere/

pgsql-general by date:

Previous
From: "Frank D. Engel, Jr."
Date:
Subject: Re: best place to enfore rules
Next
From: John Cunningham
Date:
Subject: Re: pgpool