Re: Query regarding PostGre database

From: Craig Ringer <ringerc(at)ringerc(dot)id(dot)au>
To: Navin Chandra <navin(dot)pandit(at)ilfstechnologies(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Query regarding PostGre database
Date: 2011-08-18 05:40:52
Message-ID: 4E4CA5E4.5050302@ringerc.id.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 18/08/2011 11:52 AM, Navin Chandra wrote:
> Hi,
>
> I am an application developer, want to use ‘PostGre’ as backend. May I
> know what is the maximum possible number of concurrent users?
> Your acknowledgement will be highly appreciated.

You seem to have replied to yourself. Eh?

There's no such thing as "PostGre". You probably meant PostgreSQL or
just Postgres.

The maximum number of concurrent users depends on the hardware and the
database workload. It is impossible to answer without more information.

There is a difference between the maximum number of connections and the
maximum number of actively working queries. You can have lots of
connections, but much fewer actively running queries if you want the
system to perform well. As a rule of thumb, we usually say that the
number of connections that should be doing work is roughly

(number of CPU cores) + (number of hard drives)

... but of course that's incredibly vague and depends a huge amount on
your workload and hardware specifics. For example, in some workloads the
hard drives don't matter at all, it's only the CPUs and amount of memory.

If you find that your PostgreSQL instance cannot handle enough
connections, you can add a connection pooler like PgPool-II, or use your
application server's connection pooler. Using fewer connections and a
pooler is usually faster than using lots of direct connections to
PostgreSQL anyway.

Perhaps you can explain a bit more about what you want to do so we can
help you in more detail?

--
Craig Ringer

Browse pgsql-general by date

  From Date Subject
Next Message Lauri Kajan 2011-08-18 06:29:59 Re: join between a table and function.
Previous Message Scott Marlowe 2011-08-18 05:21:43 Re: Query regarding PostGre database