From: | Simon Riggs <simon(at)2ndQuadrant(dot)com> |
---|---|
To: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
Cc: | Alvaro Herrera <alvherre(at)commandprompt(dot)com>, Pg Hackers <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: inefficient use of relation extension? |
Date: | 2009-10-16 08:19:27 |
Message-ID: | 1255681167.30088.2899.camel@ebony |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
On Thu, 2009-10-15 at 19:58 -0400, Tom Lane wrote:
> Alvaro Herrera <alvherre(at)commandprompt(dot)com> writes:
> > Hmm ... this is something that had not occured to me earlier. There is
> > a connection pool here (JDBCConnectionPool I'm told; hadn't heard about
> > that one) and there are about 100 backends permanently, not all of which
> > are always busy. Perhaps what's going on here is that some of them are
> > idle for long enough that the sinval queue gets full.
>
> Hm, that's definitely possible, and 8.1 did not have very good code for
> coping with sinval overrun. But it's not clear to me why that would
> affect the rel extension code path in particular.
I don't think this is an issue that affects the rel extension path
alone.
The typical behaviour is to attempt to assign work, if connection busy
then start a new connection and do work there. If the type of work being
done is similar then this behaviour means that contention leads to
additional contention. So *any* form of contention gets magnified.
--
Simon Riggs www.2ndQuadrant.com
From | Date | Subject | |
---|---|---|---|
Next Message | Simon Riggs | 2009-10-16 08:21:30 | Re: Trigger with WHEN clause (WIP) |
Previous Message | Jeff Davis | 2009-10-16 07:56:52 | Re: operator exclusion constraints [was: generalized index constraints] |