Re: autovacuum - Mailing list pgsql-admin

From Tom Lane
Subject Re: autovacuum
Date
Msg-id 20656.1139080327@sss.pgh.pa.us
Whole thread Raw
In response to Re: autovacuum  (Christopher Browne <cbbrowne@acm.org>)
List pgsql-admin
Christopher Browne <cbbrowne@acm.org> writes:
>> does autovacuum locks tables while vacuuming?

> Of course it does; any request to access a relation will issue one or
> more locks on the relation.

This is correct in general ...

> VACUUM issues an AccessShareLock request against each relation that is
> vacuumed, which is probably nearly the same lock request your
> applications will be requesting, save for the fact that they'll also
> be submitting some RowExclusiveLock requests for individual rows of
> relations.

... but wrong in detail.  Actually VACUUM takes ShareUpdateExclusive
lock, which is a bit stronger than an ordinary reader's AccessShare
lock (it does not block ordinary reads or updates, but it does block
index creation as well as other attempts to VACUUM the table).  Also,
RowExclusiveLock is a table-level lock.  Data-modifying commands such
as UPDATE take RowExclusiveLock on the whole table as a means of letting
other sessions know that someone is changing the table.  They also
take row-level locks on the specific rows they change.

This is all discussed here:
http://www.postgresql.org/docs/8.1/static/explicit-locking.html

            regards, tom lane

pgsql-admin by date:

Previous
From: Christopher Browne
Date:
Subject: Re: autovacuum
Next
From: "Luba Alpin"
Date:
Subject: Installation problem question