From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
---|---|
To: | Jakub Ouhrabka <jakub(dot)ouhrabka(at)comgate(dot)cz> |
Cc: | pgsql-performance(at)postgresql(dot)org |
Subject: | Re: Linux/PostgreSQL scalability issue - problem with 8 cores |
Date: | 2008-01-08 00:01:32 |
Message-ID: | 27655.1199750492@sss.pgh.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-performance |
Jakub Ouhrabka <jakub(dot)ouhrabka(at)comgate(dot)cz> writes:
>>> Does your app create and destroy a tremendous number of temp tables,
>>> or anything else in the way of frequent DDL commands?
> Hmm. I can't think of anything like this. Maybe there are few backends
> which create temp tables but not tremendous number. I don't think our
> applications issue DDL statements either. Can LOCK TABLE IN EXCLUSIVE
> MODE cause this?
No.
I did some experimenting to see exactly how large the sinval message
buffer is in today's terms, and what I find is that about 22 cycles
of
create temp table foo (f1 int, f2 text); drop table foo;
is enough to force a CatchupInterrupt to a sleeping backend. This case
is a bit more complex than it appears since the text column forces the
temp table to have a toast table; but even with only fixed-width
columns, if you were creating one temp table a second that would be
plenty to explain once-a-minute-or-so CatchupInterrupt processing.
And if you've got a lot of backends that normally *don't* wake up
that often, then they'd be sitting and failing to absorb the sinval
traffic in any more timely fashion. So I'm betting that we've got
the source of the spike identified. You could check this theory
out by strace'ing some of the idle backends and seeing if their
activity spikes are triggered by receipt of SIGUSR1 signals.
regards, tom lane
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2008-01-08 00:54:25 | Re: Linux/PostgreSQL scalability issue - problem with 8 cores |
Previous Message | Scott Marlowe | 2008-01-07 23:08:46 | Re: concurrent inserts into two separate tables are very slow |