Re: New vacuum option to do only freezing
Tom Lane <tgl@sss.pgh.pa.us>
From: Tom Lane <tgl@sss.pgh.pa.us>
To: Robert Haas <robertmhaas@gmail.com>
Cc: Masahiko Sawada <sawada.mshk@gmail.com>,
Kyotaro HORIGUCHI <horiguchi.kyotaro@lab.ntt.co.jp>,
"Bossart,
Nathan" <bossartn@amazon.com>,
Alvaro Herrera <alvherre@2ndquadrant.com>,
PostgreSQL-development <pgsql-hackers@postgresql.org>
Date: 2019-04-16T01:07:16Z
Lists: pgsql-hackers
Robert Haas <robertmhaas@gmail.com> writes: > On Mon, Apr 15, 2019 at 3:47 PM Tom Lane <tgl@sss.pgh.pa.us> wrote: >> No. I'm thinking there should be exactly one test of index_cleanup >> in this logic, and what it would be is along the lines of ... > I'm not sure that's correct. If you do that, it'll end up in the > non-tupgone case, which might try to freeze a tuple that should've > been removed. Or am I confused? If we're failing to remove it, and it's below the desired freeze horizon, then we'd darn well better freeze it instead, no? Since we know that the tuple only just became dead, I suspect that the case would be unreachable in practice. But the approach you propose risks violating the invariant that all old tuples will either be removed or frozen. regards, tom lane
Commits
-
Add toast-level reloption for vacuum_index_cleanup
- ce59b75d449d 12.0 landed
-
heap_prepare_freeze_tuple: Simplify coding
- 2bf372a4ae26 12.0 landed
-
Fix missing word.
- 6665305e17ed 12.0 landed
-
Allow VACUUM to be run with index cleanup disabled.
- a96c41feec6b 12.0 landed
-
Don't mark pages all-visible spuriously
- d2599ecfcc74 11.0 cited