Re: BUG #17257: (auto)vacuum hangs within lazy_scan_prune()
Matthias van de Meent <boekewurm+postgres@gmail.com>
Commits
GET /api/v1/messages/:b64id/commits
the thread's linked commits as JSON, with link sources.
API reference →
-
Ensure vacuum removes all visibly dead tuples older than OldestXmin
- 06bf404cd07b 16.4 landed
- 45ce054c02b8 14.13 landed
- dc6354c67017 15.8 landed
-
Combine freezing and pruning steps in VACUUM
- 6dbb490261a6 17.0 cited
-
Handle non-chain tuples outside of heap_prune_chain()
- 6f47f6883151 17.0 cited
-
Fix false reports in pg_visibility
- e85662df44ff 17.0 cited
-
Remove retry loop in heap_page_prune().
- 1ccc1e05ae8f 17.0 cited
-
vacuumlazy.c: document vistest and OldestXmin.
- 73f6ec3d3c8d 15.0 cited
-
Deduplicate choice of horizon for a relation procarray.c.
- d9d8aa9bb9aa 15.0 cited
-
Remove tupgone special case from vacuumlazy.c.
- 8523492d4e34 14.0 cited
-
Simplify state managed by VACUUM.
- b4af70cb2103 14.0 cited
-
Recycle nbtree pages deleted during same VACUUM.
- 9dd963ae2534 14.0 cited
-
snapshot scalability: Don't compute global horizons while building snapshots.
- dc7420c2c927 14.0 cited
-
Raise error when affecting tuple moved into different partition.
- f16241bef7cc 11.0 cited
Attachments
- 0001-Fix-stuck-vacuum-due-to-retreating-GlobalVisState-ma.patch (application/octet-stream) patch 0001
On Fri, 29 Oct 2021 at 20:17, Peter Geoghegan <pg@bowt.ie> wrote: > > On Fri, Oct 29, 2021 at 6:30 AM Alexander Lakhin <exclusion@gmail.com> wrote: > > I can propose the debugging patch to reproduce the issue that replaces > > the hang with the assert and modifies a pair of crash-causing test > > scripts to simplify the reproducing. (Sorry, I have no time now to prune > > down the scripts further as I have to leave for a week.) > > This bug is similar to the one fixed in commit d9d8aa9b. And so I > wonder if code like GlobalVisTestFor() is missing something that it > needs for partitioned tables. Without `autovacuum = off; fsync = off` I could not replicate the issue in the configured 10m time window; with those options I did get the reported trace in minutes. I think that I also have found the culprit, which is something we talked about in [0]: GlobalVisState->maybe_needed was not guaranteed to never move backwards when recalculated, and because vacuum can update its snapshot bounds (heap_prune_satisfies_vacuum -> GlobalVisTestIsRemovableFullXid -> GlobalVisUpdate) this maybe_needed could move backwards, resulting in the observed behaviour. It was my understanding based on the mail conversation that Andres would fix this observed issue too while fixing [0] (whose fix was included with beta 2), but apparently I was wrong; I can't find the code for 'maybe_needed'-won't-move-backwards-in-a-backend. I (again) propose the attached patch, which ensures that this maybe_needed field will not move backwards for a backend. It is based on 14, but should be applied on head as well, because it's lacking there as well. Another alternative would be to replace the use of vacrel->OldestXmin with `vacrel->vistest->maybe_needed` in lazy_scan_prune, but I believe that is not legal in how vacuum works (we cannot unilaterally decide that we want to retain tuples < OldestXmin). Note: After fixing the issue with retreating maybe_needed I also hit your segfault, and I'm still trying to find out what the source of that issue might be. I do think it is an issue seperate from stuck vacuum, though. Kind regards, Matthias van de Meent [0] https://www.postgresql.org/message-id/flat/20210609184506.rqm5rikoikm47csf%40alap3.anarazel.de#e9d55b5cfff34238a24dc85c8c75a46f