From: | Kyotaro Horiguchi <horikyota(dot)ntt(at)gmail(dot)com> |
---|---|
To: | hlinnaka(at)iki(dot)fi |
Cc: | michael(at)paquier(dot)xyz, nathandbossart(at)gmail(dot)com, postgres(at)jeltef(dot)nl, smithpb2250(at)gmail(dot)com, vignesh21(at)gmail(dot)com, jakub(dot)wartak(at)enterprisedb(dot)com, stark(dot)cfm(at)gmail(dot)com, barwick(at)gmail(dot)com, jchampion(at)timescale(dot)com, pryzby(at)telsasoft(dot)com, tgl(at)sss(dot)pgh(dot)pa(dot)us, rjuju123(at)gmail(dot)com, jakub(dot)wartak(at)tomtom(dot)com, pgsql-hackers(at)lists(dot)postgresql(dot)org, bharath(dot)rupireddyforpostgres(at)gmail(dot)com |
Subject: | Re: In-placre persistance change of a relation |
Date: | 2024-12-27 08:25:02 |
Message-ID: | 20241227.172502.1469028835873784534.horikyota.ntt@gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
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
From | Date | Subject | |
---|---|---|---|
Next Message | Andreas 'ads' Scherbaum | 2024-12-27 08:42:00 | Re: Crash: invalid DSA memory alloc request |
Previous Message | Zhijie Hou (Fujitsu) | 2024-12-27 08:13:53 | RE: Memory leak in pg_logical_slot_{get,peek}_changes |