Re: Autovacuum / full vacuum

Поиск
Список
Период
Сортировка
От Alvaro Herrera
Тема Re: Autovacuum / full vacuum
Дата
Msg-id 20060117173046.GA4296@surnet.cl
обсуждение исходный текст
Ответ на Re: Autovacuum / full vacuum  (Chris Browne <cbbrowne@acm.org>)
Список pgsql-performance
Chris Browne wrote:
> ajs@crankycanuck.ca (Andrew Sullivan) writes:
> > On Tue, Jan 17, 2006 at 11:18:59AM +0100, Michael Riess wrote:
> >> hi,
> >>
> >> I'm curious as to why autovacuum is not designed to do full vacuum. I
> >
> > Because nothing that runs automatically should ever take an exclusive
> > lock on the entire database, which is what VACUUM FULL does.
>
> That's a bit more than what autovacuum would probably do...
> autovacuum does things table by table, so that what would be locked
> should just be one table.

Even a database-wide vacuum does not take locks on more than one table.
The table locks are acquired and released one by one, as the operation
proceeds.  And as you know, autovacuum (both 8.1's and contrib) does
issue database-wide vacuums, if it finds a database close to an xid
wraparound.

--
Alvaro Herrera                        http://www.advogato.org/person/alvherre
"Las mujeres son como hondas:  mientras más resistencia tienen,
 más lejos puedes llegar con ellas"  (Jonas Nightingale, Leap of Faith)

В списке pgsql-performance по дате отправления:

Предыдущее
От: Markus Schaber
Дата:
Сообщение: Re: Autovacuum / full vacuum
Следующее
От: Scott Marlowe
Дата:
Сообщение: Re: Autovacuum / full vacuum