pgsql: Fix logic in lazy vacuum to decide if it's worth trying to

From: heikki(at)postgresql(dot)org (Heikki Linnakangas)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Fix logic in lazy vacuum to decide if it's worth trying to
Date: 2009-01-06 14:55:44
Message-ID: 20090106145544.41D3C754A1B@cvs.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Log Message:
-----------
Fix logic in lazy vacuum to decide if it's worth trying to truncate the heap.
If the table was smaller than REL_TRUNCATE_FRACTION (= 16) pages, we always
tried to acquire AccessExclusiveLock on it even if there was no empty pages
at the end.

Report by Simon Riggs. Back-patch all the way to 7.4.

Tags:
----
REL8_3_STABLE

Modified Files:
--------------
pgsql/src/backend/commands:
vacuumlazy.c (r1.103.2.1 -> r1.103.2.2)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/commands/vacuumlazy.c?r1=1.103.2.1&r2=1.103.2.2)

Browse pgsql-committers by date

  From Date Subject
Next Message Heikki Linnakangas 2009-01-06 14:55:50 pgsql: Fix logic in lazy vacuum to decide if it's worth trying to
Previous Message Heikki Linnakangas 2009-01-06 14:55:37 pgsql: Fix logic in lazy vacuum to decide if it's worth trying to