Re: Spurious "apparent wraparound" via SimpleLruTruncate() rounding
Noah Misch <noah@leadboat.com>
From: Noah Misch <noah@leadboat.com>
To: Tom Lane <tgl@sss.pgh.pa.us>
Cc: Tomas Vondra <tomas.vondra@2ndquadrant.com>, pgsql-hackers@postgresql.org
Date: 2020-04-07T04:18:47Z
Lists: pgsql-hackers
On Mon, Apr 06, 2020 at 02:46:09PM -0400, Tom Lane wrote: > Noah Misch <noah@leadboat.com> writes: > > On Wed, Mar 25, 2020 at 04:42:31PM -0400, Tom Lane wrote: > >> So I think what we're actually trying to accomplish here is to > >> ensure that instead of deleting up to half of the SLRU space > >> before the cutoff, we delete up to half-less-one-segment. > >> Maybe it should be half-less-two-segments, just to provide some > >> cushion against edge cases. Reading the first comment in > >> SetTransactionIdLimit makes one not want to trust too much in > >> arguments based on the exact value of xidWrapLimit, while for > >> the other SLRUs it was already unclear whether the edge cases > >> were exactly right. > > > That could be interesting insurance. While it would be sad for us to miss an > > edge case and print "must be vacuumed within 2 transactions" when wrap has > > already happened, reaching that message implies the DBA burned ~1M XIDs, all > > in single-user mode. More plausible is FreezeMultiXactId() overrunning the > > limit by tens of segments. Hence, if we do buy this insurance, let's skip far > > more segments. For example, instead of unlinking segments representing up to > > 2^31 past XIDs, we could divide that into an upper half that we unlink and a > > lower half. The lower half will stay in place; eventually, XID consumption > > will overwrite it. Truncation behavior won't change until the region of CLOG > > for pre-oldestXact XIDs exceeds 256 MiB. Beyond that threshold, > > vac_truncate_clog() will unlink the upper 256 MiB and leave the rest. CLOG > > maximum would rise from 512 MiB to 768 MiB. Would that be worthwhile? > > Hmm. I'm not particularly concerned about the disk-space-consumption > angle, but I do wonder about whether we'd be sacrificing the ability to > recover cleanly from a situation that the code does let you get into. > However, as long as we're sure that the system will ultimately reuse/ > recycle a not-deleted old segment file without complaint, it's hard to > find much fault with your proposal. That is the trade-off. By distancing ourselves from the wraparound edge cases, we'll get more segment recycling (heretofore an edge case). Fortunately, recycling doesn't change behavior as you approach some limit; it works or it doesn't. > Temporarily wasting some disk > space is a lot more palatable than corrupting data, and these code > paths are necessarily not terribly well tested. So +1 for more > insurance. Okay, I'll give that a try. I expect this will replace the PagePrecedes callback with a PageDiff callback such that PageDiff(a, b) < 0 iff PagePrecedes(a, b). PageDiff callbacks shall distribute return values uniformly in [INT_MIN,INT_MAX]. SimpleLruTruncate() will unlink segments where INT_MIN/2 < PageDiff(candidate, cutoff) < 0.
Commits
-
Prevent excess SimpleLruTruncate() deletion.
- c424c75f5382 9.5.25 landed
- 9afba9b0e282 10.16 landed
- 677f6cb1d987 11.11 landed
- 66087f7e922c 12.6 landed
- 1a31d8c52db4 9.6.21 landed
- 6eb3fc7fcd89 13.2 landed
- 6db992833c04 14.0 landed
-
Fix unlinking of SLRU segments.
- c732c3f8c122 14.0 cited
-
Defer flushing of SLRU files.
- dee663f78439 14.0 cited
-
Change XID and mxact limits to warn at 40M and stop at 3M.
- cd5e82256de5 14.0 cited