Re: Parallel queries for a web-application |performance testing - Mailing list pgsql-performance

From Pierre C
Subject Re: Parallel queries for a web-application |performance testing
Date
Msg-id op.vefyqwfweorkce@apollo13
Whole thread Raw
In response to Re: Parallel queries for a web-application |performance testing  (Matthew Wakeling <matthew@flymine.org>)
Responses Re: Parallel queries for a web-application |performance testing  (Dimitri Fontaine <dfontaine@hi-media.com>)
List pgsql-performance
> When you set up a server that has high throughput requirements, the last
> thing you want to do is use it in a manner that cripples its throughput.
> Don't try and have 1000 parallel Postgres backends - it will process
> those queries slower than the optimal setup. You should aim to have
> approximately ((2 * cpu core count) + effective spindle count) number of
> backends, as that is the point at which throughput is the greatest. You
> can use pgbouncer to achieve this.

The same is true of a web server : 1000 active php interpreters (each
eating several megabytes or more) are not ideal for performance !

For php, I like lighttpd with php-fastcgi : the webserver proxies requests
to a small pool of php processes, which are only busy while generating the
page. Once the page is generated the webserver handles all (slow) IO to
the client.

An interesting side effect is that the number of database connections is
limited to the number of PHP processes in the pool, so you don't even need
a postgres connection pooler (unless you have lots of php boxes)...

pgsql-performance by date:

Previous
From: Matthew Wakeling
Date:
Subject: Re: Parallel queries for a web-application |performance testing
Next
From: Dimitri Fontaine
Date:
Subject: Re: Parallel queries for a web-application |performance testing