Re: Inval reliability, especially for inplace updates
Noah Misch <noah@leadboat.com>
Commits
GET /api/v1/messages/:b64id/commits
the thread's linked commits as JSON, with link sources.
API reference →
-
Update .abi-compliance-history for PrepareToInvalidateCacheTuple().
- d88f4535d29f 15.16 landed
- a3e7bbd410d4 17.8 landed
- 2e58802f7332 14.21 landed
- 2655d2e47803 16.12 landed
-
Assert lack of hazardous buffer locks before possible catalog read.
- 0dfbd191a939 14.21 landed
- 86091202a8b1 15.16 landed
- 27e4fad9804c 16.12 landed
- bcb784e7d2f9 17.8 landed
- f4ece891fc2f 18.0 landed
-
For inplace update, send nontransactional invalidations.
- 811422471940 14.21 landed
- 1d7b02711f70 16.12 landed
- 05d605b6c69f 15.16 landed
- 0f69beddea11 17.8 landed
- 4cf948cbeedf 12.21 landed
- 0ea9d40a6679 13.17 landed
- e3914bd136e4 14.14 landed
- 4eac5a1fa78e 15.9 landed
- ce8c571d014e 16.5 landed
- 95c5acb3fc26 17.1 landed
- 243e9b40f1b2 18.0 landed
-
Update .abi-compliance-history for CacheInvalidateHeapTupleInplace().
- 06b030e8973f 18.2 landed
-
Revisit cosmetics of "For inplace update, send nontransactional invalidations."
- bae8ca82fd00 18.2 landed
- 64bf53dd61ea 19 (unreleased) landed
-
Correct comments of "Fix data loss at inplace update after heap_update()".
- 0839fbe400d7 19 (unreleased) landed
-
Move I/O before the index_update_stats() buffer lock region.
- d729f1ea5a46 12.21 landed
- 6b01cac0be6d 13.17 landed
- bb3054297661 14.14 landed
- 6d5b4031b927 15.9 landed
- 6c837c237bf8 16.5 landed
- 0bcb9d07940c 17.1 landed
- b412f402d1e0 18.0 landed
-
Revert "For inplace update, send nontransactional invalidations."
- 4b0f7d6c162e 12.21 landed
- fe8091c9e39e 13.17 landed
- 4c7088729503 14.14 landed
- 27642d89081e 15.9 landed
- 6f9dd2282e37 16.5 landed
- c1099dd745b0 17.1 landed
-
Revert "WAL-log inplace update before revealing it to other sessions."
- 5e503e10d13e 12.21 landed
- be74b943c920 13.17 landed
- 9a1c73636d60 14.14 landed
- e50f9de98d63 15.9 landed
- d5be10758b36 16.5 landed
- bc6bad885725 17.1 landed
-
Fix inplace update buffer self-deadlock.
- 0bada39c83a1 18.0 landed
-
Remove duplicate words in comments
- fb7e27abfbd4 18.0 cited
-
At end of recovery, reset all sinval-managed caches.
- da9950456463 12.21 landed
- 67f30c79a1c1 13.17 landed
- dca68242a81b 14.14 landed
- 3baf804b7295 15.9 landed
- d36b4d8ec322 16.5 landed
- a4668c99f0f8 17.1 landed
-
Fix data loss at inplace update after heap_update().
- a07e03fd8fa7 18.0 cited
-
Remove comment about xl_heap_inplace "AT END OF STRUCT".
- c63ceb2f0006 13.16 landed
- 77d0bc8001e6 12.20 landed
- c7f10df36806 14.13 landed
- 2ca8ca4827af 15.8 landed
- e352ba7b7509 16.4 landed
- 4a7f91b3d314 17.0 landed
-
Reduce memory consumption for pending invalidation messages.
- 3aafc030a536 15.0 cited
-
Add support for streaming to built-in logical replication.
- 464824323e57 14.0 cited
-
WAL Log invalidations at command end with wal_level=logical.
- c55040ccd017 14.0 cited
-
Introduce logical decoding.
- b89e151054a0 9.4.0 cited
-
Rename and document some invalidation routines to make it clearer that
- 81d08fcffeed 7.1.1 cited
Attachments
- inplace155-backbranch-inval-v1_14.patch (text/plain) patch v1
- inplace155-backbranch-inval-v1_16.patch (text/plain) patch v1
- inplace155-backbranch-inval-v1_17.patch (text/plain) patch v1
- inplace160-inval-durability-inplace-v6_13.patch (text/plain) patch v6
- inplace160-inval-durability-inplace-v6_14.patch (text/plain) patch v6
- inplace160-inval-durability-inplace-v6_16.patch (text/plain) patch v6
- inplace160-inval-durability-inplace-v6_17.patch (text/plain) patch v6
- inplace160-inval-durability-inplace-v6.patch (text/plain) patch v6
With the releases wrapping in 2.5 weeks, I'm ambivalent about pushing this before the release or after. Pushing before means fewer occurrences of corruption, but pushing after gives more bake time to discover these changes were defective. It's hard to predict which helps users more, on a risk-adjusted basis. I'm leaning toward pushing this week. Opinions? On Sun, Oct 20, 2024 at 06:41:37PM +0530, Nitin Motiani wrote: > I tested the patch locally and it works. And I have no other question > regarding the structure. So this patch looks good to me to commit. Thanks. While resolving a back-branch merge conflict, I found AtEOXact_Inval() and AtEOSubXact_Inval() were skipping inplaceInvalInfo tasks if transInvalInfo==NULL. If one PreInplace_Inval() failed, the session's next inplace update would get an assertion failure. Non-assert builds left inplaceInvalInfo pointing to freed memory, but I didn't find a reachable malfunction. Separately, the xact.c comment edit wasn't reflecting that v4 brought back the transactional inval. v6 fixes those. Regarding the back-branch alternatives to the WAL format change: On Tue, Jun 18, 2024 at 08:23:49AM -0700, Noah Misch wrote: > On Mon, Jun 17, 2024 at 06:57:30PM -0700, Andres Freund wrote: > > On 2024-06-17 16:58:54 -0700, Noah Misch wrote: > > > On Sat, Jun 15, 2024 at 03:37:18PM -0700, Noah Misch wrote: > > > > - heap_xlog_inplace() could set the shared-inval-queue overflow signal on > > > > every backend. This is more wasteful, but inplace updates might be rare > > > > enough (~once per VACUUM) to make it tolerable. > > > > We already set that surprisingly frequently, as > > a) The size of the sinval queue is small > > b) If a backend is busy, it does not process catchup interrupts > > (i.e. executing queries, waiting for a lock prevents processing) > > c) There's no deduplication of invals, we often end up sending the same inval > > over and over. > > > > So I suspect this might not be too bad, compared to the current badness. > > That is good. I benchmarked that by hacking 027_stream_regress.pl to run "pgbench --no-vacuum --client=4 -T 30 -b select-only" on the standby, concurrent with the primary running the regression tests. Standby clients acted on sinval resetState ~16k times, and pgbench tps decreased 4.5%. That doesn't necessarily mean the real-life cost would be unacceptable, but it was enough of a decrease that I switched to the next choice: > We might be able to do the overflow signal once at end of > recovery, like RelationCacheInitFileRemove() does for the init file. That's > mildly harder to reason about, but it would be cheaper. Hmmm. I'm attaching the branch-specific patches for that and for the main fix. Other notes from back-patching: - All branches change the ABI of PrepareToInvalidateCacheTuple(), a function catcache.c exports for the benefit of inval.c. No PGXN extension calls that, and I can't think of a use case in extensions. - Due to v15 commit 3aafc03, the patch for v14 differs to an unusual degree from the patch for v15+v16. The difference is mostly mechanical, though. Thanks, nm