Re: VACUUM ANALYZE blocking both reads and writes to a table - Mailing list pgsql-performance

From Alvaro Herrera
Subject Re: VACUUM ANALYZE blocking both reads and writes to a table
Date
Msg-id 20080630152515.GF10311@alvh.no-ip.org
Whole thread Raw
In response to VACUUM ANALYZE blocking both reads and writes to a table  (Peter Schuller <peter.schuller@infidyne.com>)
Responses Re: VACUUM ANALYZE blocking both reads and writes to a table  (Peter Schuller <peter.schuller@infidyne.com>)
Re: VACUUM ANALYZE blocking both reads and writes to a table  (Peter Schuller <peter.schuller@infidyne.com>)
List pgsql-performance
Peter Schuller wrote:

> Does anyone have input on why this could be happening? The PostgreSQL
> version is 8.2.4[1]. Am I correct in that it *should* not be possible
> for this to happen?

No.  VACUUM takes an exclusive lock at the end of the operation to
truncate empty pages.  (If it cannot get the lock then it'll just skip
this step.)  In 8.2.4 there was a bug that caused it to sleep
according to vacuum_delay during the scan to identify possibly empty
pages.  This was fixed in 8.2.5:

    revision 1.81.2.1
    date: 2007-09-10 13:58:50 -0400;  author: alvherre;  state: Exp;  lines: +6 -2;
    Remove the vacuum_delay_point call in count_nondeletable_pages, because we hold
    an exclusive lock on the table at this point, which we want to release as soon
    as possible.  This is called in the phase of lazy vacuum where we truncate the
    empty pages at the end of the table.

    An alternative solution would be to lower the vacuum delay settings before
    starting the truncating phase, but this doesn't work very well in autovacuum
    due to the autobalancing code (which can cause other processes to change our
    cost delay settings).  This case could be considered in the balancing code, but
    it is simpler this way.

--
Alvaro Herrera                                http://www.CommandPrompt.com/
PostgreSQL Replication, Consulting, Custom Development, 24x7 support

pgsql-performance by date:

Previous
From: Tom Lane
Date:
Subject: Re: sequence scan problem
Next
From: Peter Schuller
Date:
Subject: Re: VACUUM ANALYZE blocking both reads and writes to a table