From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
---|---|
To: | Kris Kennaway <kris(at)obsecurity(dot)org> |
Cc: | Mark Kirkwood <markir(at)paradise(dot)net(dot)nz>, current(at)FreeBSD(dot)org, performance(at)FreeBSD(dot)org, pgsql-hackers <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: Anyone interested in improving postgresql scaling? |
Date: | 2007-04-10 18:46:56 |
Message-ID: | 28537.1176230816@sss.pgh.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
Kris Kennaway <kris(at)obsecurity(dot)org> writes:
>>> Make SYSV semaphores less dumb about process wakeups. Currently
>>> whenever the semaphore state changes, all processes sleeping on the
>>> semaphore are woken, even if we only have released enough resources
>>> for one waiting process to claim.
>> Correct. The behavior Kris describes is surely bad, but it's not
>> relevant to Postgres' usage of SysV semaphores.
> Sorry, but the behaviour is real.
Oh, I'm sure the BSD kernel acts as you describe. But Mark's point is
that Postgres never has more than one process waiting on any particular
SysV semaphore, and so the problem doesn't really affect us.
Or do you mean that the kernel wakes all processes sleeping on *any*
SysV semaphore? That would be nasty :-(
regards, tom lane
From | Date | Subject | |
---|---|---|---|
Next Message | Gurjeet Singh | 2007-04-10 19:18:40 | Re: [HACKERS] [Fwd: Index Advisor] |
Previous Message | Kris Kennaway | 2007-04-10 18:43:33 | Re: Anyone interested in improving postgresql scaling? |