Re: Client Connection vs. JDBC Connections vs. Postgres processes

From: Oliver Jowett <oliver(at)opencloud(dot)com>
To: sgoldstein(at)apache(dot)org
Cc: pgsql-jdbc(at)postgresql(dot)org
Subject: Re: Client Connection vs. JDBC Connections vs. Postgres processes
Date: 2005-07-26 23:37:51
Message-ID: 42E6C94F.10300@opencloud.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

Scott Goldstein wrote:

> Postgres Client Connections = Open JDBC Connections = Postgres server
> processes

Each Connection made using the postgres JDBC driver opens a connection
to the postmaster resulting in a new server process, yes. You might have
other postgres clients, too, and you might have non-postgres JDBC
connections that obviously don't affect the postmaster.

> If so, I can configure the max for each through "max_connections"
> property, correct?

Yeah.

-O

In response to

Browse pgsql-jdbc by date

  From Date Subject
Next Message Michael Allman 2005-07-26 23:39:45 jdbc xa patches
Previous Message Oliver Jowett 2005-07-26 23:35:34 Re: Configuring Connections