Re: VACUUMs take twice as long across all nodes

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Gavin Hamill <gdh(at)laterooms(dot)com>
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: VACUUMs take twice as long across all nodes
Date: 2006-10-27 18:07:43
Message-ID: 7564.1161972463@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

Gavin Hamill <gdh(at)laterooms(dot)com> writes:
> 2006-10-27 08:37:12 UTC INFO: vacuuming "public.Allocation"
> 2006-10-27 08:37:21 UTC INFO: "Allocation": found 56449 removable, 4989360 nonremovable row versions in 47158 pages
> 2006-10-27 08:37:21 UTC DETAIL: 0 dead row versions cannot be removed yet.
> Nonremovable row versions range from 64 to 72 bytes long.
> There were 1 unused item pointers.
> Total free space (including removable row versions) is 5960056 bytes.
> 13 pages are or will become empty, including 0 at the end of the table.
> 5258 pages containing 4282736 free bytes are potential move destinations.
> CPU 0.16s/0.07u sec elapsed 9.55 sec.
> 2006-10-27 08:44:25 UTC INFO: index "allocation_pkey" now contains 4989360 row versions in 102198 pages
> 2006-10-27 08:44:25 UTC DETAIL: 56449 index row versions were removed.
> 1371 index pages have been deleted, 1371 are currently reusable.
> CPU 1.02s/0.38u sec elapsed 423.22 sec.

So the time is all in index vacuuming, eh? I think what's happening is
that the physical order of the index is degrading over time, and so the
vacuum scan takes longer due to more seeking. Can you afford to do a
REINDEX? If this theory is correct that should drive the time back
down.

8.2 has rewritten btree index vacuuming code that scans the index in
physical not logical order, so this problem should largely go away in
8.2, but in existing releases I can't see much you can do about it
except REINDEX when things get slow.

regards, tom lane

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Worky Workerson 2006-10-27 18:39:57 Re: Best COPY Performance
Previous Message Scott Marlowe 2006-10-27 15:49:28 Re: query produces 1 GB temp file