Re: Vacuuming of indexes on tables. - Mailing list pgsql-general

From Tom Lane
Subject Re: Vacuuming of indexes on tables.
Date
Msg-id 18369.1145389489@sss.pgh.pa.us
Whole thread Raw
In response to Re: Vacuuming of indexes on tables.  (elein <elein@varlena.com>)
List pgsql-general
elein <elein@varlena.com> writes:
> The order of events seems to be vacuum indexes and then vacuum the
> table.  Wouldn't we get more bang if we vacuumed the table and then
> the indexes?

No, the problem is that we can't recycle removed index pages until we
are certain there are not any transactions referencing or about to
reference the pages.  Postponing the recycle to a later command seems
the only very practical way to deal with that --- you don't want VACUUM
hanging up waiting for transactions that may or may not finish any time
soon.  See the notes in access/nbtree/README.

            regards, tom lane

pgsql-general by date:

Previous
From: Tom Lane
Date:
Subject: Re: Weird error updating table
Next
From: "Ploski, Karen L"
Date:
Subject: PostgreSQL and the OCFS2 filesystem