Re: Vacuum ERRORs out considering freezing dead tuples from before OldestXmin
Melanie Plageman <melanieplageman@gmail.com>
From: Melanie Plageman <melanieplageman@gmail.com>
To: Peter Geoghegan <pg@bowt.ie>
Cc: Heikki Linnakangas <hlinnaka@iki.fi>,
Pg Hackers <pgsql-hackers@postgresql.org>, Andres Freund <andres@anarazel.de>, Noah Misch <noah@leadboat.com>
Date: 2024-07-17T15:07:16Z
Lists: pgsql-hackers
Commits
Same data as JSON:
GET /api/v1/messages/:b64id/commits
the thread's linked commits as JSON, with link sources.
API reference →
-
Test that vacuum removes tuples older than OldestXmin
- 2c0bc4765741 17.6 landed
- 303ba0573ce6 18.0 landed
- 80c34692e8e6 17.0 landed
- aa607980aee0 18.0 landed
-
Lower minimum maintenance_work_mem to 64kB
- 2eda3df9ad53 17.0 landed
- bbf668d66fbf 18.0 landed
-
Add accidentally omitted test to meson build file
- 9d198f4d3e3b 16.4 landed
-
Use DELETE instead of UPDATE to speed up vacuum test
- 924a08b76f5d 14.13 landed
- 9744fe24118b 15.8 landed
- 571e0ee40ebd 16.4 landed
-
Revert "Test that vacuum removes tuples older than OldestXmin"
- efcbb76efe40 18.0 landed
- 1a3e90948b50 17.0 landed
-
Ensure vacuum removes all visibly dead tuples older than OldestXmin
- fd4f12df5e46 17.0 landed
- 83c39a1f7f3f 18.0 landed
Attachments
- v4-0001-Ensure-vacuum-removes-all-visibly-dead-tuples-old.patch (text/x-patch) patch v4-0001
- v4-0002-Test-that-vacuum-removes-tuples-older-than-Oldest.patch (text/x-patch) patch v4-0002
On Mon, Jul 15, 2024 at 6:02 PM Peter Geoghegan <pg@bowt.ie> wrote: > > On Mon, Jul 8, 2024 at 2:25 PM Melanie Plageman > <melanieplageman@gmail.com> wrote: > > I could still use another pair of eyes on the test (looking out for > > stability enhancing measures I could take). > > First, the basics: I found that your test failed reliably without your > fix, and passed reliably with your fix. Thanks for the review. > Minor nitpicking about the comments in your TAP test: > > * It is necessary but not sufficient for your test to "skewer" > maybe_needed, relative to OldestXmin. Obviously, it is not sufficient > because the test can only fail when VACUUM prunes a heap page after > the backend's horizons have been "skewered" in this sense. > > Pruning is when we get stuck, and if there's no more pruning then > there's no opportunity for VACUUM to get stuck. Perhaps this point > should be noted directly in the comments. You could add a sentence > immediately after the existing sentence "Then vacuum's first pass will > continue and pruning...". This new sentence would then add commentary > such as "Finally, vacuum's second pass over the heap...". I've added a description to the top of the test of the scenario required and then reworked the comment you are describing to try and make this more clear. > * Perhaps you should point out that you're using VACUUM FREEZE for > this because it'll force the backend to always get a cleanup lock. > This is something you rely on to make the repro reliable, but that's > it. > > In other words, point out to the reader that this bug has nothing to > do with freezing; it just so happens to be convenient to use VACUUM > FREEZE this way, due to implementation details. I've mentioned this in a comment. > * The sentence "VACUUM proceeds with pruning and does a visibility > check on each tuple..." describes the bug in terms of the current > state of things on Postgres 17, but Postgres 17 hasn't been released > just yet. Does that really make sense? In the patch targeted at master, I think it makes sense to describe the code as it is. In the backpatch versions, I reworked this comment to be correct for those versions. > If you want to describe the invariant that caused > heap_pre_freeze_checks() to error-out on HEAD/Postgres 17, then the > commit message of your fix seems like the right place for that. You > could reference these errors in passing. The errors seem fairly > incidental to the real problem, at least to me. The errors are mentioned in the fix commit message. > I think that there is some chance that this test will break the build > farm in whatever way, since there is a long history of VACUUM not > quite behaving as expected with these sorts of tests. I think that you > should commit the test case separately, first thing in the morning, > and then keep an eye on the build farm for the rest of the day. I > don't think that it's sensible to bend over backwards, just to avoid > breaking the build farm in this way. Sounds good. - Melanie