Re: In-placre persistance change of a relation
Kyotaro Horiguchi <horikyota.ntt@gmail.com>
From: Kyotaro Horiguchi <horikyota.ntt@gmail.com>
To: hlinnaka@iki.fi
Cc: michael@paquier.xyz, nathandbossart@gmail.com, postgres@jeltef.nl,
smithpb2250@gmail.com, vignesh21@gmail.com, jakub.wartak@enterprisedb.com,
stark.cfm@gmail.com, barwick@gmail.com, jchampion@timescale.com,
pryzby@telsasoft.com, tgl@sss.pgh.pa.us, rjuju123@gmail.com,
jakub.wartak@tomtom.com, pgsql-hackers@lists.postgresql.org,
bharath.rupireddyforpostgres@gmail.com
Date: 2024-12-27T08:25:02Z
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 →
-
pg_dump: Refactor getIndexes()
- e2c52beecdea 15.0 cited
-
Optimize DropRelFileNodesAllBuffers() for recovery.
- bea449c635c0 14.0 cited
Attachments
- v36-0001-Add-XLOG-resource-for-the-undo-log-system.patch (text/x-patch)
Hello. This is the updated version. (Sorry for the delay; I've been a little swamped.) - Undo logs are primarily stored in a fixed number of fixed-length slots and are spilled into files under some conditions. The number of slots is 32 (ULOG_SLOT_NUM), and the buffer length is 1024 (ULOG_SLOT_BUF_LEN). Both are currently non-configurable. - Undo logs are now used only during recovery and no longer involved in transaction ends for normal backends. Pending deletes for aborts have been restored. - Undo logs are stored on a per-Top-XID basis. - RelationPreserverStorate() is no longer modified. In this version, in the part following the introduction of orphan storage prevention, the restriction on prepared transactions persisting beyond server crashes (i.e., the prohibition) has been removed. This is because handling for such cases has been reverted to pendingDeletes. Let me know if you have any questions or concerns. regards. -- Kyotaro Horiguchi NTT Open Source Software Center