Re: Oddly slow queries - Mailing list pgsql-performance

From Scott Marlowe
Subject Re: Oddly slow queries
Date
Msg-id dcc563d10804191004l1406fe89r5e2b7ee3931a4348@mail.gmail.com
Whole thread Raw
In response to Re: Oddly slow queries  (Thomas Spreng <spreng@socket.ch>)
Responses Re: Oddly slow queries  (Thomas Spreng <spreng@socket.ch>)
List pgsql-performance
On Wed, Apr 16, 2008 at 3:48 PM, Thomas Spreng <spreng@socket.ch> wrote:
>
>  On 16.04.2008, at 17:42, Chris Browne wrote:
>
> > spreng@socket.ch (Thomas Spreng) writes:
> >
> > > On 16.04.2008, at 01:24, PFC wrote:
> > >
> > > >
> > > >
> > > > > The queries in question (select's) occasionally take up to 5 mins
> > > > > even if they take ~2-3 sec under "normal" conditions, there are no
> > > > > sequencial scans done in those queries. There are not many users
> > > > > connected (around 3, maybe) to this database usually since it's
> > > > > still in a testing phase. I tried to hunt down the problem by
> > > > > playing around with resource usage cfg options but it didn't really
> > > > > made a difference.
> > > > >
> > > >
> > > >        Could that be caused by a CHECKPOINT ?
> > > >
> > >
> > > actually there are a few log (around 12 per day) entries concerning
> > > checkpoints:
> > >
> > > LOG:  checkpoints are occurring too frequently (10 seconds apart)
> > > HINT:  Consider increasing the configuration parameter
> > > "checkpoint_segments".
> > >
> > > But wouldn't that only affect write performance? The main problems I'm
> > > concerned about affect SELECT queries.
> > >
> >
> > No, that will certainly NOT just affect write performance; if the
> > postmaster is busy writing out checkpoints, that will block SELECT
> > queries that are accessing whatever is being checkpointed.
> >
>
>  What I meant is if there are no INSERT's or UPDATE's going on it shouldn't
>  affect SELECT queries, or am I wrong?

But checkpoints only occur every 10 seconds because of a high insert /
update rate.  So, there ARE inserts and updates going on, and a lot of
them, and they are blocking your selects when checkpoint hits.

While adjusting your background writer might be called for, and might
provide you with some relief, you REALLY need to find out what's
pushing so much data into your db at once that it's causing a
checkpoint storm.

pgsql-performance by date:

Previous
From: "Scott Marlowe"
Date:
Subject: Re: Exact index overhead
Next
From: Christopher Browne
Date:
Subject: Re: Oddly slow queries