Re: Running on multiple core server - Mailing list pgsql-novice

From Christian Ramseyer
Subject Re: Running on multiple core server
Date
Msg-id 4CB655F6.7080501@networkz.ch
Whole thread Raw
In response to Running on multiple core server  (Jason Tan Boon Teck <tanboonteck@gmail.com>)
List pgsql-novice
On 10/13/2010 06:03 AM, Jason Tan Boon Teck wrote:
>
> Why doesn't the OS make use of the other 3 cores - assigning one to
> Apache and another to PostgreSQL when only 1 client is querying?
>

The scheduler in your Linux kernel decided that it was better to run
both these tasks on the same core. This may have advantages regarding
CPU register, cache or pipeline usage.

Usually, CPU processing power isn't the bottleneck in database
applications, I/O (i.e. how fast can be read from/written to storage)
tends to be the limiting factor. So it's quite likely that running on
two cores would either not improve the total runtime or even slow your
application down.

> Is there anything I can do to tweak?
>

Look for an utility named taskset, usually contained in the schedutils
package. You can use it to set the CPU affinity of processes to specific
CPUs, e.g.

taskset -c 3,4 -p a1,a2,a3 #--> your Apaches with pid a1-3 are now bound
to CPUs 3 & 4.

You'll need to RTFM a bit though to find out how/if it can deal with the
child processes Postgres spawns, I've never tried to do that (or
anything with this utility at all for that matter).

Hope that helps
Christian

pgsql-novice by date:

Previous
From: Mladen Gogala
Date:
Subject: Re: Pgstatspack errors in log files
Next
From: Bruce Momjian
Date:
Subject: Re: Not quite there yet