Age Owner Branch data TLA Line data Source code
1 : : /*-------------------------------------------------------------------------
2 : : *
3 : : * clog.c
4 : : * PostgreSQL transaction-commit-log manager
5 : : *
6 : : * This module stores two bits per transaction regarding its commit/abort
7 : : * status; the status for four transactions fit in a byte.
8 : : *
9 : : * This would be a pretty simple abstraction on top of slru.c, except that
10 : : * for performance reasons we allow multiple transactions that are
11 : : * committing concurrently to form a queue, so that a single process can
12 : : * update the status for all of them within a single lock acquisition run.
13 : : *
14 : : * XLOG interactions: this module generates an XLOG record whenever a new
15 : : * CLOG page is initialized to zeroes. Other writes of CLOG come from
16 : : * recording of transaction commit or abort in xact.c, which generates its
17 : : * own XLOG records for these events and will re-perform the status update
18 : : * on redo; so we need make no additional XLOG entry here. For synchronous
19 : : * transaction commits, the XLOG is guaranteed flushed through the XLOG commit
20 : : * record before we are called to log a commit, so the WAL rule "write xlog
21 : : * before data" is satisfied automatically. However, for async commits we
22 : : * must track the latest LSN affecting each CLOG page, so that we can flush
23 : : * XLOG that far and satisfy the WAL rule. We don't have to worry about this
24 : : * for aborts (whether sync or async), since the post-crash assumption would
25 : : * be that such transactions failed anyway.
26 : : *
27 : : * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
28 : : * Portions Copyright (c) 1994, Regents of the University of California
29 : : *
30 : : * src/backend/access/transam/clog.c
31 : : *
32 : : *-------------------------------------------------------------------------
33 : : */
34 : : #include "postgres.h"
35 : :
36 : : #include "access/clog.h"
37 : : #include "access/slru.h"
38 : : #include "access/transam.h"
39 : : #include "access/xlog.h"
40 : : #include "access/xloginsert.h"
41 : : #include "access/xlogutils.h"
42 : : #include "miscadmin.h"
43 : : #include "pg_trace.h"
44 : : #include "pgstat.h"
45 : : #include "storage/proc.h"
46 : : #include "storage/sync.h"
47 : : #include "utils/guc_hooks.h"
48 : : #include "utils/wait_event.h"
49 : :
50 : : /*
51 : : * Defines for CLOG page sizes. A page is the same BLCKSZ as is used
52 : : * everywhere else in Postgres.
53 : : *
54 : : * Note: because TransactionIds are 32 bits and wrap around at 0xFFFFFFFF,
55 : : * CLOG page numbering also wraps around at 0xFFFFFFFF/CLOG_XACTS_PER_PAGE,
56 : : * and CLOG segment numbering at
57 : : * 0xFFFFFFFF/CLOG_XACTS_PER_PAGE/SLRU_PAGES_PER_SEGMENT. We need take no
58 : : * explicit notice of that fact in this module, except when comparing segment
59 : : * and page numbers in TruncateCLOG (see CLOGPagePrecedes).
60 : : */
61 : :
62 : : /* We need two bits per xact, so four xacts fit in a byte */
63 : : #define CLOG_BITS_PER_XACT 2
64 : : #define CLOG_XACTS_PER_BYTE 4
65 : : #define CLOG_XACTS_PER_PAGE (BLCKSZ * CLOG_XACTS_PER_BYTE)
66 : : #define CLOG_XACT_BITMASK ((1 << CLOG_BITS_PER_XACT) - 1)
67 : :
68 : : /*
69 : : * Because space used in CLOG by each transaction is so small, we place a
70 : : * smaller limit on the number of CLOG buffers than SLRU allows. No other
71 : : * SLRU needs this.
72 : : */
73 : : #define CLOG_MAX_ALLOWED_BUFFERS \
74 : : Min(SLRU_MAX_ALLOWED_BUFFERS, \
75 : : (((MaxTransactionId / 2) + (CLOG_XACTS_PER_PAGE - 1)) / CLOG_XACTS_PER_PAGE))
76 : :
77 : :
78 : : /*
79 : : * Although we return an int64 the actual value can't currently exceed
80 : : * 0xFFFFFFFF/CLOG_XACTS_PER_PAGE.
81 : : */
82 : : static inline int64
837 akorotkov@postgresql 83 :CBC 1139291 : TransactionIdToPage(TransactionId xid)
84 : : {
85 : 1139291 : return xid / (int64) CLOG_XACTS_PER_PAGE;
86 : : }
87 : :
88 : : #define TransactionIdToPgIndex(xid) ((xid) % (TransactionId) CLOG_XACTS_PER_PAGE)
89 : : #define TransactionIdToByte(xid) (TransactionIdToPgIndex(xid) / CLOG_XACTS_PER_BYTE)
90 : : #define TransactionIdToBIndex(xid) ((xid) % (TransactionId) CLOG_XACTS_PER_BYTE)
91 : :
92 : : /* We store the latest async LSN for each group of transactions */
93 : : #define CLOG_XACTS_PER_LSN_GROUP 32 /* keep this a power of 2 */
94 : : #define CLOG_LSNS_PER_PAGE (CLOG_XACTS_PER_PAGE / CLOG_XACTS_PER_LSN_GROUP)
95 : :
96 : : #define GetLSNIndex(slotno, xid) ((slotno) * CLOG_LSNS_PER_PAGE + \
97 : : ((xid) % (TransactionId) CLOG_XACTS_PER_PAGE) / CLOG_XACTS_PER_LSN_GROUP)
98 : :
99 : : /*
100 : : * The number of subtransactions below which we consider to apply clog group
101 : : * update optimization. Testing reveals that the number higher than this can
102 : : * hurt performance.
103 : : */
104 : : #define THRESHOLD_SUBTRANS_CLOG_OPT 5
105 : :
106 : : /*
107 : : * Link to shared-memory data structures for CLOG control
108 : : */
109 : : static SlruCtlData XactCtlData;
110 : :
111 : : #define XactCtl (&XactCtlData)
112 : :
113 : :
114 : : static bool CLOGPagePrecedes(int64 page1, int64 page2);
115 : : static int clog_errdetail_for_io_error(const void *opaque_data);
116 : : static void WriteTruncateXlogRec(int64 pageno, TransactionId oldestXact,
117 : : Oid oldestXactDb);
118 : : static void TransactionIdSetPageStatus(TransactionId xid, int nsubxids,
119 : : TransactionId *subxids, XidStatus status,
120 : : XLogRecPtr lsn, int64 pageno,
121 : : bool all_xact_same_page);
122 : : static void TransactionIdSetStatusBit(TransactionId xid, XidStatus status,
123 : : XLogRecPtr lsn, int slotno);
124 : : static void set_status_by_pages(int nsubxids, TransactionId *subxids,
125 : : XidStatus status, XLogRecPtr lsn);
126 : : static bool TransactionGroupUpdateXidStatus(TransactionId xid,
127 : : XidStatus status, XLogRecPtr lsn, int64 pageno);
128 : : static void TransactionIdSetPageStatusInternal(TransactionId xid, int nsubxids,
129 : : TransactionId *subxids, XidStatus status,
130 : : XLogRecPtr lsn, int64 pageno);
131 : :
132 : :
133 : : /*
134 : : * TransactionIdSetTreeStatus
135 : : *
136 : : * Record the final state of transaction entries in the commit log for
137 : : * a transaction and its subtransaction tree. Take care to ensure this is
138 : : * efficient, and as atomic as possible.
139 : : *
140 : : * xid is a single xid to set status for. This will typically be
141 : : * the top level transactionid for a top level commit or abort. It can
142 : : * also be a subtransaction when we record transaction aborts.
143 : : *
144 : : * subxids is an array of xids of length nsubxids, representing subtransactions
145 : : * in the tree of xid. In various cases nsubxids may be zero.
146 : : *
147 : : * lsn must be the WAL location of the commit record when recording an async
148 : : * commit. For a synchronous commit it can be InvalidXLogRecPtr, since the
149 : : * caller guarantees the commit record is already flushed in that case. It
150 : : * should be InvalidXLogRecPtr for abort cases, too.
151 : : *
152 : : * In the commit case, atomicity is limited by whether all the subxids are in
153 : : * the same CLOG page as xid. If they all are, then the lock will be grabbed
154 : : * only once, and the status will be set to committed directly. Otherwise
155 : : * we must
156 : : * 1. set sub-committed all subxids that are not on the same page as the
157 : : * main xid
158 : : * 2. atomically set committed the main xid and the subxids on the same page
159 : : * 3. go over the first bunch again and set them committed
160 : : * Note that as far as concurrent checkers are concerned, main transaction
161 : : * commit as a whole is still atomic.
162 : : *
163 : : * Example:
164 : : * TransactionId t commits and has subxids t1, t2, t3, t4
165 : : * t is on page p1, t1 is also on p1, t2 and t3 are on p2, t4 is on p3
166 : : * 1. update pages2-3:
167 : : * page2: set t2,t3 as sub-committed
168 : : * page3: set t4 as sub-committed
169 : : * 2. update page1:
170 : : * page1: set t,t1 as committed
171 : : * 3. update pages2-3:
172 : : * page2: set t2,t3 as committed
173 : : * page3: set t4 as committed
174 : : *
175 : : * NB: this is a low-level routine and is NOT the preferred entry point
176 : : * for most uses; functions in transam.c are the intended callers.
177 : : *
178 : : * XXX Think about issuing POSIX_FADV_WILLNEED on pages that we will need,
179 : : * but aren't yet in cache, as well as hinting pages not to fall out of
180 : : * cache yet.
181 : : */
182 : : void
6355 alvherre@alvh.no-ip. 183 : 158398 : TransactionIdSetTreeStatus(TransactionId xid, int nsubxids,
184 : : TransactionId *subxids, XidStatus status, XLogRecPtr lsn)
185 : : {
837 akorotkov@postgresql 186 : 158398 : int64 pageno = TransactionIdToPage(xid); /* get page of parent */
187 : : int i;
188 : :
6355 alvherre@alvh.no-ip. 189 [ + + - + ]: 158398 : Assert(status == TRANSACTION_STATUS_COMMITTED ||
190 : : status == TRANSACTION_STATUS_ABORTED);
191 : :
192 : : /*
193 : : * See how many subxids, if any, are on the same page as the parent, if
194 : : * any.
195 : : */
196 [ + + ]: 165029 : for (i = 0; i < nsubxids; i++)
197 : : {
198 [ - + ]: 6631 : if (TransactionIdToPage(subxids[i]) != pageno)
6355 alvherre@alvh.no-ip. 199 :UBC 0 : break;
200 : : }
201 : :
202 : : /*
203 : : * Do all items fit on a single page?
204 : : */
6355 alvherre@alvh.no-ip. 205 [ + - ]:CBC 158398 : if (i == nsubxids)
206 : : {
207 : : /*
208 : : * Set the parent and all subtransactions in a single call
209 : : */
210 : 158398 : TransactionIdSetPageStatus(xid, nsubxids, subxids, status, lsn,
211 : : pageno, true);
212 : : }
213 : : else
214 : : {
6121 bruce@momjian.us 215 :UBC 0 : int nsubxids_on_first_page = i;
216 : :
217 : : /*
218 : : * If this is a commit then we care about doing this correctly (i.e.
219 : : * using the subcommitted intermediate status). By here, we know
220 : : * we're updating more than one page of clog, so we must mark entries
221 : : * that are *not* on the first page so that they show as subcommitted
222 : : * before we then return to update the status to fully committed.
223 : : *
224 : : * To avoid touching the first page twice, skip marking subcommitted
225 : : * for the subxids on that first page.
226 : : */
6355 alvherre@alvh.no-ip. 227 [ # # ]: 0 : if (status == TRANSACTION_STATUS_COMMITTED)
228 : 0 : set_status_by_pages(nsubxids - nsubxids_on_first_page,
229 : 0 : subxids + nsubxids_on_first_page,
230 : : TRANSACTION_STATUS_SUB_COMMITTED, lsn);
231 : :
232 : : /*
233 : : * Now set the parent and subtransactions on same page as the parent,
234 : : * if any
235 : : */
236 : 0 : pageno = TransactionIdToPage(xid);
237 : 0 : TransactionIdSetPageStatus(xid, nsubxids_on_first_page, subxids, status,
238 : : lsn, pageno, false);
239 : :
240 : : /*
241 : : * Now work through the rest of the subxids one clog page at a time,
242 : : * starting from the second page onwards, like we did above.
243 : : */
244 : 0 : set_status_by_pages(nsubxids - nsubxids_on_first_page,
245 : 0 : subxids + nsubxids_on_first_page,
246 : : status, lsn);
247 : : }
6355 alvherre@alvh.no-ip. 248 :CBC 158398 : }
249 : :
250 : : /*
251 : : * Helper for TransactionIdSetTreeStatus: set the status for a bunch of
252 : : * transactions, chunking in the separate CLOG pages involved. We never
253 : : * pass the whole transaction tree to this function, only subtransactions
254 : : * that are on different pages to the top level transaction id.
255 : : */
256 : : static void
6355 alvherre@alvh.no-ip. 257 :UBC 0 : set_status_by_pages(int nsubxids, TransactionId *subxids,
258 : : XidStatus status, XLogRecPtr lsn)
259 : : {
837 akorotkov@postgresql 260 : 0 : int64 pageno = TransactionIdToPage(subxids[0]);
6121 bruce@momjian.us 261 : 0 : int offset = 0;
262 : 0 : int i = 0;
263 : :
3082 tgl@sss.pgh.pa.us 264 [ # # ]: 0 : Assert(nsubxids > 0); /* else the pageno fetch above is unsafe */
265 : :
6355 alvherre@alvh.no-ip. 266 [ # # ]: 0 : while (i < nsubxids)
267 : : {
6121 bruce@momjian.us 268 : 0 : int num_on_page = 0;
269 : : int64 nextpageno;
270 : :
271 : : do
272 : : {
3082 tgl@sss.pgh.pa.us 273 : 0 : nextpageno = TransactionIdToPage(subxids[i]);
274 [ # # ]: 0 : if (nextpageno != pageno)
275 : 0 : break;
6355 alvherre@alvh.no-ip. 276 : 0 : num_on_page++;
277 : 0 : i++;
3082 tgl@sss.pgh.pa.us 278 [ # # ]: 0 : } while (i < nsubxids);
279 : :
6355 alvherre@alvh.no-ip. 280 : 0 : TransactionIdSetPageStatus(InvalidTransactionId,
281 : 0 : num_on_page, subxids + offset,
282 : : status, lsn, pageno, false);
283 : 0 : offset = i;
3082 tgl@sss.pgh.pa.us 284 : 0 : pageno = nextpageno;
285 : : }
6355 alvherre@alvh.no-ip. 286 : 0 : }
287 : :
288 : : /*
289 : : * Record the final state of transaction entries in the commit log for all
290 : : * entries on a single page. Atomic only on this page.
291 : : */
292 : : static void
6355 alvherre@alvh.no-ip. 293 :CBC 158398 : TransactionIdSetPageStatus(TransactionId xid, int nsubxids,
294 : : TransactionId *subxids, XidStatus status,
295 : : XLogRecPtr lsn, int64 pageno,
296 : : bool all_xact_same_page)
297 : : {
298 : : LWLock *lock;
299 : :
300 : : /* Can't use group update when PGPROC overflows. */
301 : : StaticAssertDecl(THRESHOLD_SUBTRANS_CLOG_OPT <= PGPROC_MAX_CACHED_SUBXIDS,
302 : : "group clog threshold less than PGPROC cached subxids");
303 : :
304 : : /* Get the SLRU bank lock for the page we are going to access. */
746 305 : 158398 : lock = SimpleLruGetBankLock(XactCtl, pageno);
306 : :
307 : : /*
308 : : * When there is contention on the SLRU bank lock we need, we try to group
309 : : * multiple updates; a single leader process will perform transaction
310 : : * status updates for multiple backends so that the number of times the
311 : : * bank lock needs to be acquired is reduced.
312 : : *
313 : : * For this optimization to be safe, the XID and subxids in MyProc must be
314 : : * the same as the ones for which we're setting the status. Check that
315 : : * this is the case.
316 : : *
317 : : * For this optimization to be efficient, we shouldn't have too many
318 : : * sub-XIDs and all of the XIDs for which we're adjusting clog should be
319 : : * on the same page. Check those conditions, too.
320 : : */
2039 andres@anarazel.de 321 [ + - + + : 158398 : if (all_xact_same_page && xid == MyProc->xid &&
+ + ]
3117 rhaas@postgresql.org 322 : 132567 : nsubxids <= THRESHOLD_SUBTRANS_CLOG_OPT &&
2039 andres@anarazel.de 323 [ + - + + ]: 132567 : nsubxids == MyProc->subxidStatus.count &&
1473 tgl@sss.pgh.pa.us 324 : 449 : (nsubxids == 0 ||
325 [ + - ]: 449 : memcmp(subxids, MyProc->subxids.xids,
326 : : nsubxids * sizeof(TransactionId)) == 0))
327 : : {
328 : : /*
329 : : * If we can immediately acquire the lock, we update the status of our
330 : : * own XID and release the lock. If not, try use group XID update. If
331 : : * that doesn't work out, fall back to waiting for the lock to perform
332 : : * an update for this transaction only.
333 : : */
746 alvherre@alvh.no-ip. 334 [ + + ]: 132567 : if (LWLockConditionalAcquire(lock, LW_EXCLUSIVE))
335 : : {
336 : : /* Got the lock without waiting! Do the update. */
3117 rhaas@postgresql.org 337 : 132516 : TransactionIdSetPageStatusInternal(xid, nsubxids, subxids, status,
338 : : lsn, pageno);
746 alvherre@alvh.no-ip. 339 : 132516 : LWLockRelease(lock);
3117 rhaas@postgresql.org 340 : 132516 : return;
341 : : }
342 [ + - ]: 51 : else if (TransactionGroupUpdateXidStatus(xid, status, lsn, pageno))
343 : : {
344 : : /* Group update mechanism has done the work. */
345 : 51 : return;
346 : : }
347 : :
348 : : /* Fall through only if update isn't done yet. */
349 : : }
350 : :
351 : : /* Group update not applicable, or couldn't accept this page number. */
746 alvherre@alvh.no-ip. 352 : 25831 : LWLockAcquire(lock, LW_EXCLUSIVE);
3117 rhaas@postgresql.org 353 : 25831 : TransactionIdSetPageStatusInternal(xid, nsubxids, subxids, status,
354 : : lsn, pageno);
746 alvherre@alvh.no-ip. 355 : 25831 : LWLockRelease(lock);
356 : : }
357 : :
358 : : /*
359 : : * Record the final state of transaction entry in the commit log
360 : : *
361 : : * We don't do any locking here; caller must handle that.
362 : : */
363 : : static void
3117 rhaas@postgresql.org 364 : 158398 : TransactionIdSetPageStatusInternal(TransactionId xid, int nsubxids,
365 : : TransactionId *subxids, XidStatus status,
366 : : XLogRecPtr lsn, int64 pageno)
367 : : {
368 : : int slotno;
369 : : int i;
370 : :
8968 tgl@sss.pgh.pa.us 371 [ + + - + : 158398 : Assert(status == TRANSACTION_STATUS_COMMITTED ||
- - - - ]
372 : : status == TRANSACTION_STATUS_ABORTED ||
373 : : (status == TRANSACTION_STATUS_SUB_COMMITTED && !TransactionIdIsValid(xid)));
746 alvherre@alvh.no-ip. 374 [ - + ]: 158398 : Assert(LWLockHeldByMeInMode(SimpleLruGetBankLock(XactCtl, pageno),
375 : : LW_EXCLUSIVE));
376 : :
377 : : /*
378 : : * If we're doing an async commit (ie, lsn is valid), then we must wait
379 : : * for any active write on the page slot to complete. Otherwise our
380 : : * update could reach disk in that write, which will not do since we
381 : : * mustn't let it reach disk until we've done the appropriate WAL flush.
382 : : * But when lsn is invalid, it's OK to scribble on a page while it is
383 : : * write-busy, since we don't care if the update reaches disk sooner than
384 : : * we think.
385 : : */
2 heikki.linnakangas@i 386 :GNC 158398 : slotno = SimpleLruReadPage(XactCtl, pageno, !XLogRecPtrIsValid(lsn), &xid);
387 : :
388 : : /*
389 : : * Set the main transaction id, if any.
390 : : *
391 : : * If we update more than one xid on this page while it is being written
392 : : * out, we might find that some of the bits go to disk and others don't.
393 : : * If we are updating commits on the page with the top-level xid that
394 : : * could break atomicity, so we subcommit the subxids first before we mark
395 : : * the top-level commit.
396 : : */
6355 alvherre@alvh.no-ip. 397 [ + - ]:CBC 158398 : if (TransactionIdIsValid(xid))
398 : : {
399 : : /* Subtransactions first, if needed ... */
400 [ + + ]: 158398 : if (status == TRANSACTION_STATUS_COMMITTED)
401 : : {
402 [ + + ]: 155739 : for (i = 0; i < nsubxids; i++)
403 : : {
2130 tgl@sss.pgh.pa.us 404 [ - + ]: 6313 : Assert(XactCtl->shared->page_number[slotno] == TransactionIdToPage(subxids[i]));
6355 alvherre@alvh.no-ip. 405 : 6313 : TransactionIdSetStatusBit(subxids[i],
406 : : TRANSACTION_STATUS_SUB_COMMITTED,
407 : : lsn, slotno);
408 : : }
409 : : }
410 : :
411 : : /* ... then the main transaction */
412 : 158398 : TransactionIdSetStatusBit(xid, status, lsn, slotno);
413 : : }
414 : :
415 : : /* Set the subtransactions */
416 [ + + ]: 165029 : for (i = 0; i < nsubxids; i++)
417 : : {
2130 tgl@sss.pgh.pa.us 418 [ - + ]: 6631 : Assert(XactCtl->shared->page_number[slotno] == TransactionIdToPage(subxids[i]));
6355 alvherre@alvh.no-ip. 419 : 6631 : TransactionIdSetStatusBit(subxids[i], status, lsn, slotno);
420 : : }
421 : :
2130 tgl@sss.pgh.pa.us 422 : 158398 : XactCtl->shared->page_dirty[slotno] = true;
3117 rhaas@postgresql.org 423 : 158398 : }
424 : :
425 : : /*
426 : : * Subroutine for TransactionIdSetPageStatus, q.v.
427 : : *
428 : : * When we cannot immediately acquire the SLRU bank lock in exclusive mode at
429 : : * commit time, add ourselves to a list of processes that need their XIDs
430 : : * status update. The first process to add itself to the list will acquire
431 : : * the lock in exclusive mode and set transaction status as required on behalf
432 : : * of all group members. This avoids a great deal of contention when many
433 : : * processes are trying to commit at once, since the lock need not be
434 : : * repeatedly handed off from one committing process to the next.
435 : : *
436 : : * Returns true when transaction status has been updated in clog; returns
437 : : * false if we decided against applying the optimization because the page
438 : : * number we need to update differs from those processes already waiting.
439 : : */
440 : : static bool
441 : 51 : TransactionGroupUpdateXidStatus(TransactionId xid, XidStatus status,
442 : : XLogRecPtr lsn, int64 pageno)
443 : : {
444 : 51 : volatile PROC_HDR *procglobal = ProcGlobal;
445 : 51 : PGPROC *proc = MyProc;
446 : : uint32 nextidx;
447 : : uint32 wakeidx;
448 : : int64 prevpageno;
746 alvherre@alvh.no-ip. 449 : 51 : LWLock *prevlock = NULL;
450 : :
451 : : /* We should definitely have an XID whose status needs to be updated. */
3117 rhaas@postgresql.org 452 [ - + ]: 51 : Assert(TransactionIdIsValid(xid));
453 : :
454 : : /*
455 : : * Prepare to add ourselves to the list of processes needing a group XID
456 : : * status update.
457 : : */
458 : 51 : proc->clogGroupMember = true;
459 : 51 : proc->clogGroupMemberXid = xid;
460 : 51 : proc->clogGroupMemberXidStatus = status;
461 : 51 : proc->clogGroupMemberPage = pageno;
462 : 51 : proc->clogGroupMemberLsn = lsn;
463 : :
464 : : /*
465 : : * We put ourselves in the queue by writing MyProcNumber to
466 : : * ProcGlobal->clogGroupFirst. However, if there's already a process
467 : : * listed there, we compare our pageno with that of that process; if it
468 : : * differs, we cannot participate in the group, so we return for caller to
469 : : * update pg_xact in the normal way.
470 : : *
471 : : * If we're not the first process in the list, we must follow the leader.
472 : : * We do this by storing the data we want updated in our PGPROC entry
473 : : * where the leader can find it, then going to sleep.
474 : : *
475 : : * If no process is already in the list, we're the leader; our first step
476 : : * is to lock the SLRU bank to which our page belongs, then we close out
477 : : * the group by resetting the list pointer from ProcGlobal->clogGroupFirst
478 : : * (this lets other processes set up other groups later); finally we do
479 : : * the SLRU updates, release the SLRU bank lock, and wake up the sleeping
480 : : * processes.
481 : : *
482 : : * If another group starts to update a page in a different SLRU bank, they
483 : : * can proceed concurrently, since the bank lock they're going to use is
484 : : * different from ours. If another group starts to update a page in the
485 : : * same bank as ours, they wait until we release the lock.
486 : : */
487 : 51 : nextidx = pg_atomic_read_u32(&procglobal->clogGroupFirst);
488 : :
489 : : while (true)
490 : : {
491 : : /*
492 : : * Add the proc to list, if the clog page where we need to update the
493 : : * current transaction status is same as group leader's clog page.
494 : : *
495 : : * There is a race condition here, which is that after doing the below
496 : : * check and before adding this proc's clog update to a group, the
497 : : * group leader might have already finished the group update for this
498 : : * page and becomes group leader of another group, updating a
499 : : * different page. This will lead to a situation where a single group
500 : : * can have different clog page updates. This isn't likely and will
501 : : * still work, just less efficiently -- we handle this case by
502 : : * switching to a different bank lock in the loop below.
503 : : */
742 heikki.linnakangas@i 504 [ + + ]: 51 : if (nextidx != INVALID_PROC_NUMBER &&
752 505 [ - + ]: 13 : GetPGProcByNumber(nextidx)->clogGroupMemberPage != proc->clogGroupMemberPage)
506 : : {
507 : : /*
508 : : * Ensure that this proc is not a member of any clog group that
509 : : * needs an XID status update.
510 : : */
3117 rhaas@postgresql.org 511 :UBC 0 : proc->clogGroupMember = false;
742 heikki.linnakangas@i 512 : 0 : pg_atomic_write_u32(&proc->clogGroupNext, INVALID_PROC_NUMBER);
3117 rhaas@postgresql.org 513 : 0 : return false;
514 : : }
515 : :
3117 rhaas@postgresql.org 516 :CBC 51 : pg_atomic_write_u32(&proc->clogGroupNext, nextidx);
517 : :
518 [ + - ]: 51 : if (pg_atomic_compare_exchange_u32(&procglobal->clogGroupFirst,
519 : : &nextidx,
520 : : (uint32) MyProcNumber))
521 : 51 : break;
522 : : }
523 : :
524 : : /*
525 : : * If the list was not empty, the leader will update the status of our
526 : : * XID. It is impossible to have followers without a leader because the
527 : : * first process that has added itself to the list will always have
528 : : * nextidx as INVALID_PROC_NUMBER.
529 : : */
742 heikki.linnakangas@i 530 [ + + ]: 51 : if (nextidx != INVALID_PROC_NUMBER)
531 : : {
3117 rhaas@postgresql.org 532 : 13 : int extraWaits = 0;
533 : :
534 : : /* Sleep until the leader updates our XID status. */
2129 tgl@sss.pgh.pa.us 535 : 13 : pgstat_report_wait_start(WAIT_EVENT_XACT_GROUP_UPDATE);
536 : : for (;;)
537 : : {
538 : : /* acts as a read barrier */
3117 rhaas@postgresql.org 539 : 13 : PGSemaphoreLock(proc->sem);
540 [ + - ]: 13 : if (!proc->clogGroupMember)
541 : 13 : break;
3117 rhaas@postgresql.org 542 :UBC 0 : extraWaits++;
543 : : }
3117 rhaas@postgresql.org 544 :CBC 13 : pgstat_report_wait_end();
545 : :
742 heikki.linnakangas@i 546 [ - + ]: 13 : Assert(pg_atomic_read_u32(&proc->clogGroupNext) == INVALID_PROC_NUMBER);
547 : :
548 : : /* Fix semaphore count for any absorbed wakeups */
3117 rhaas@postgresql.org 549 [ - + ]: 13 : while (extraWaits-- > 0)
3117 rhaas@postgresql.org 550 :UBC 0 : PGSemaphoreUnlock(proc->sem);
3117 rhaas@postgresql.org 551 :CBC 13 : return true;
552 : : }
553 : :
554 : : /*
555 : : * By here, we know we're the leader process. Acquire the SLRU bank lock
556 : : * that corresponds to the page we originally wanted to modify.
557 : : */
746 alvherre@alvh.no-ip. 558 : 38 : prevpageno = proc->clogGroupMemberPage;
559 : 38 : prevlock = SimpleLruGetBankLock(XactCtl, prevpageno);
560 : 38 : LWLockAcquire(prevlock, LW_EXCLUSIVE);
561 : :
562 : : /*
563 : : * Now that we've got the lock, clear the list of processes waiting for
564 : : * group XID status update, saving a pointer to the head of the list.
565 : : * (Trying to pop elements one at a time could lead to an ABA problem.)
566 : : *
567 : : * At this point, any processes trying to do this would create a separate
568 : : * group.
569 : : */
3117 rhaas@postgresql.org 570 : 38 : nextidx = pg_atomic_exchange_u32(&procglobal->clogGroupFirst,
571 : : INVALID_PROC_NUMBER);
572 : :
573 : : /* Remember head of list so we can perform wakeups after dropping lock. */
574 : 38 : wakeidx = nextidx;
575 : :
576 : : /* Walk the list and update the status of all XIDs. */
742 heikki.linnakangas@i 577 [ + + ]: 89 : while (nextidx != INVALID_PROC_NUMBER)
578 : : {
69 drowley@postgresql.o 579 :GNC 51 : PGPROC *nextproc = GetPGProcByNumber(nextidx);
600 michael@paquier.xyz 580 :CBC 51 : int64 thispageno = nextproc->clogGroupMemberPage;
581 : :
582 : : /*
583 : : * If the page to update belongs to a different bank than the previous
584 : : * one, exchange bank lock to the new one. This should be quite rare,
585 : : * as described above.
586 : : *
587 : : * (We could try to optimize this by waking up the processes for which
588 : : * we have already updated the status while we exchange the lock, but
589 : : * the code doesn't do that at present. I think it'd require
590 : : * additional bookkeeping, making the common path slower in order to
591 : : * improve an infrequent case.)
592 : : */
746 alvherre@alvh.no-ip. 593 [ - + ]: 51 : if (thispageno != prevpageno)
594 : : {
746 alvherre@alvh.no-ip. 595 :UBC 0 : LWLock *lock = SimpleLruGetBankLock(XactCtl, thispageno);
596 : :
597 [ # # ]: 0 : if (prevlock != lock)
598 : : {
599 : 0 : LWLockRelease(prevlock);
600 : 0 : LWLockAcquire(lock, LW_EXCLUSIVE);
601 : : }
602 : 0 : prevlock = lock;
603 : 0 : prevpageno = thispageno;
604 : : }
605 : :
606 : : /*
607 : : * Transactions with more than THRESHOLD_SUBTRANS_CLOG_OPT sub-XIDs
608 : : * should not use group XID status update mechanism.
609 : : */
1257 drowley@postgresql.o 610 [ - + ]:CBC 51 : Assert(nextproc->subxidStatus.count <= THRESHOLD_SUBTRANS_CLOG_OPT);
611 : :
612 : 51 : TransactionIdSetPageStatusInternal(nextproc->clogGroupMemberXid,
613 : 51 : nextproc->subxidStatus.count,
614 : 51 : nextproc->subxids.xids,
615 : : nextproc->clogGroupMemberXidStatus,
616 : : nextproc->clogGroupMemberLsn,
617 : : nextproc->clogGroupMemberPage);
618 : :
619 : : /* Move to next proc in list. */
620 : 51 : nextidx = pg_atomic_read_u32(&nextproc->clogGroupNext);
621 : : }
622 : :
623 : : /* We're done with the lock now. */
746 alvherre@alvh.no-ip. 624 [ + - ]: 38 : if (prevlock != NULL)
625 : 38 : LWLockRelease(prevlock);
626 : :
627 : : /*
628 : : * Now that we've released the lock, go back and wake everybody up. We
629 : : * don't do this under the lock so as to keep lock hold times to a
630 : : * minimum.
631 : : *
632 : : * (Perhaps we could do this in two passes, the first setting
633 : : * clogGroupNext to invalid while saving the semaphores to an array, then
634 : : * a single write barrier, then another pass unlocking the semaphores.)
635 : : */
742 heikki.linnakangas@i 636 [ + + ]: 89 : while (wakeidx != INVALID_PROC_NUMBER)
637 : : {
69 drowley@postgresql.o 638 :GNC 51 : PGPROC *wakeproc = GetPGProcByNumber(wakeidx);
639 : :
1257 drowley@postgresql.o 640 :CBC 51 : wakeidx = pg_atomic_read_u32(&wakeproc->clogGroupNext);
742 heikki.linnakangas@i 641 : 51 : pg_atomic_write_u32(&wakeproc->clogGroupNext, INVALID_PROC_NUMBER);
642 : :
643 : : /* ensure all previous writes are visible before follower continues. */
3117 rhaas@postgresql.org 644 : 51 : pg_write_barrier();
645 : :
1257 drowley@postgresql.o 646 : 51 : wakeproc->clogGroupMember = false;
647 : :
648 [ + + ]: 51 : if (wakeproc != MyProc)
649 : 13 : PGSemaphoreUnlock(wakeproc->sem);
650 : : }
651 : :
3117 rhaas@postgresql.org 652 : 38 : return true;
653 : : }
654 : :
655 : : /*
656 : : * Sets the commit status of a single transaction.
657 : : *
658 : : * Caller must hold the corresponding SLRU bank lock, will be held at exit.
659 : : */
660 : : static void
6355 alvherre@alvh.no-ip. 661 : 171342 : TransactionIdSetStatusBit(TransactionId xid, XidStatus status, XLogRecPtr lsn, int slotno)
662 : : {
663 : 171342 : int byteno = TransactionIdToByte(xid);
664 : 171342 : int bshift = TransactionIdToBIndex(xid) * CLOG_BITS_PER_XACT;
665 : : char *byteptr;
666 : : char byteval;
667 : : char curval;
668 : :
746 669 [ - + ]: 171342 : Assert(XactCtl->shared->page_number[slotno] == TransactionIdToPage(xid));
670 [ - + ]: 171342 : Assert(LWLockHeldByMeInMode(SimpleLruGetBankLock(XactCtl,
671 : : XactCtl->shared->page_number[slotno]),
672 : : LW_EXCLUSIVE));
673 : :
2130 tgl@sss.pgh.pa.us 674 : 171342 : byteptr = XactCtl->shared->page_buffer[slotno] + byteno;
6341 alvherre@alvh.no-ip. 675 : 171342 : curval = (*byteptr >> bshift) & CLOG_XACT_BITMASK;
676 : :
677 : : /*
678 : : * When replaying transactions during recovery we still need to perform
679 : : * the two phases of subcommit and then commit. However, some transactions
680 : : * are already correctly marked, so we just treat those as a no-op which
681 : : * allows us to keep the following Assert as restrictive as possible.
682 : : */
683 [ + + + + : 171342 : if (InRecovery && status == TRANSACTION_STATUS_SUB_COMMITTED &&
- + ]
684 : : curval == TRANSACTION_STATUS_COMMITTED)
6341 alvherre@alvh.no-ip. 685 :UBC 0 : return;
686 : :
687 : : /*
688 : : * Current state change should be from 0 or subcommitted to target state
689 : : * or we should already be there when replaying changes during recovery.
690 : : */
6341 alvherre@alvh.no-ip. 691 [ + + + + :CBC 171342 : Assert(curval == 0 ||
- + - + ]
692 : : (curval == TRANSACTION_STATUS_SUB_COMMITTED &&
693 : : status != TRANSACTION_STATUS_IN_PROGRESS) ||
694 : : curval == status);
695 : :
696 : : /* note this assumes exclusive access to the clog page */
7925 tgl@sss.pgh.pa.us 697 : 171342 : byteval = *byteptr;
698 : 171342 : byteval &= ~(((1 << CLOG_BITS_PER_XACT) - 1) << bshift);
699 : 171342 : byteval |= (status << bshift);
700 : 171342 : *byteptr = byteval;
701 : :
702 : : /*
703 : : * Update the group LSN if the transaction completion LSN is higher.
704 : : *
705 : : * Note: lsn will be invalid when supplied during InRecovery processing,
706 : : * so we don't need to do anything special to avoid LSN updates during
707 : : * recovery. After recovery completes the next clog change will set the
708 : : * LSN correctly.
709 : : */
129 alvherre@kurilemu.de 710 [ + + ]:GNC 171342 : if (XLogRecPtrIsValid(lsn))
711 : : {
6801 tgl@sss.pgh.pa.us 712 :CBC 29704 : int lsnindex = GetLSNIndex(slotno, xid);
713 : :
2130 714 [ + + ]: 29704 : if (XactCtl->shared->group_lsn[lsnindex] < lsn)
715 : 27094 : XactCtl->shared->group_lsn[lsnindex] = lsn;
716 : : }
717 : : }
718 : :
719 : : /*
720 : : * Interrogate the state of a transaction in the commit log.
721 : : *
722 : : * Aside from the actual commit status, this function returns (into *lsn)
723 : : * an LSN that is late enough to be able to guarantee that if we flush up to
724 : : * that LSN then we will have flushed the transaction's commit record to disk.
725 : : * The result is not necessarily the exact LSN of the transaction's commit
726 : : * record! For example, for long-past transactions (those whose clog pages
727 : : * already migrated to disk), we'll return InvalidXLogRecPtr. Also, because
728 : : * we group transactions on the same clog page to conserve storage, we might
729 : : * return the LSN of a later transaction that falls into the same group.
730 : : *
731 : : * NB: this is a low-level routine and is NOT the preferred entry point
732 : : * for most uses; TransactionLogFetch() in transam.c is the intended caller.
733 : : */
734 : : XidStatus
6801 735 : 787885 : TransactionIdGetStatus(TransactionId xid, XLogRecPtr *lsn)
736 : : {
837 akorotkov@postgresql 737 : 787885 : int64 pageno = TransactionIdToPage(xid);
8968 tgl@sss.pgh.pa.us 738 : 787885 : int byteno = TransactionIdToByte(xid);
739 : 787885 : int bshift = TransactionIdToBIndex(xid) * CLOG_BITS_PER_XACT;
740 : : int slotno;
741 : : int lsnindex;
742 : : char *byteptr;
743 : : XidStatus status;
744 : :
745 : : /* lock is acquired by SimpleLruReadPage_ReadOnly */
746 : :
2 heikki.linnakangas@i 747 :GNC 787885 : slotno = SimpleLruReadPage_ReadOnly(XactCtl, pageno, &xid);
2130 tgl@sss.pgh.pa.us 748 :CBC 787885 : byteptr = XactCtl->shared->page_buffer[slotno] + byteno;
749 : :
8968 750 : 787885 : status = (*byteptr >> bshift) & CLOG_XACT_BITMASK;
751 : :
6801 752 : 787885 : lsnindex = GetLSNIndex(slotno, xid);
2130 753 : 787885 : *lsn = XactCtl->shared->group_lsn[lsnindex];
754 : :
746 alvherre@alvh.no-ip. 755 : 787885 : LWLockRelease(SimpleLruGetBankLock(XactCtl, pageno));
756 : :
8968 tgl@sss.pgh.pa.us 757 : 787885 : return status;
758 : : }
759 : :
760 : : /*
761 : : * Number of shared CLOG buffers.
762 : : *
763 : : * If asked to autotune, use 2MB for every 1GB of shared buffers, up to 8MB.
764 : : * Otherwise just cap the configured amount to be between 16 and the maximum
765 : : * allowed.
766 : : */
767 : : static int
5182 rhaas@postgresql.org 768 : 4442 : CLOGShmemBuffers(void)
769 : : {
770 : : /* auto-tune based on shared buffers */
746 alvherre@alvh.no-ip. 771 [ + + ]: 4442 : if (transaction_buffers == 0)
772 : 3287 : return SimpleLruAutotuneBuffers(512, 1024);
773 : :
774 [ + - + - ]: 1155 : return Min(Max(16, transaction_buffers), CLOG_MAX_ALLOWED_BUFFERS);
775 : : }
776 : :
777 : : /*
778 : : * Initialization of shared memory for CLOG
779 : : */
780 : : Size
8968 tgl@sss.pgh.pa.us 781 : 2147 : CLOGShmemSize(void)
782 : : {
5182 rhaas@postgresql.org 783 : 2147 : return SimpleLruShmemSize(CLOGShmemBuffers(), CLOG_LSNS_PER_PAGE);
784 : : }
785 : :
786 : : void
8968 tgl@sss.pgh.pa.us 787 : 1150 : CLOGShmemInit(void)
788 : : {
789 : : /* If auto-tuning is requested, now is the time to do it */
746 alvherre@alvh.no-ip. 790 [ + + ]: 1150 : if (transaction_buffers == 0)
791 : : {
792 : : char buf[32];
793 : :
794 : 1145 : snprintf(buf, sizeof(buf), "%d", CLOGShmemBuffers());
795 : 1145 : SetConfigOption("transaction_buffers", buf, PGC_POSTMASTER,
796 : : PGC_S_DYNAMIC_DEFAULT);
797 : :
798 : : /*
799 : : * We prefer to report this value's source as PGC_S_DYNAMIC_DEFAULT.
800 : : * However, if the DBA explicitly set transaction_buffers = 0 in the
801 : : * config file, then PGC_S_DYNAMIC_DEFAULT will fail to override that
802 : : * and we must force the matter with PGC_S_OVERRIDE.
803 : : */
804 [ - + ]: 1145 : if (transaction_buffers == 0) /* failed to apply it? */
746 alvherre@alvh.no-ip. 805 :UBC 0 : SetConfigOption("transaction_buffers", buf, PGC_POSTMASTER,
806 : : PGC_S_OVERRIDE);
807 : : }
746 alvherre@alvh.no-ip. 808 [ - + ]:CBC 1150 : Assert(transaction_buffers != 0);
809 : :
2130 tgl@sss.pgh.pa.us 810 : 1150 : XactCtl->PagePrecedes = CLOGPagePrecedes;
2 heikki.linnakangas@i 811 :GNC 1150 : XactCtl->errdetail_for_io_error = clog_errdetail_for_io_error;
746 alvherre@alvh.no-ip. 812 :CBC 1150 : SimpleLruInit(XactCtl, "transaction", CLOGShmemBuffers(), CLOG_LSNS_PER_PAGE,
813 : : "pg_xact", LWTRANCHE_XACT_BUFFER,
814 : : LWTRANCHE_XACT_SLRU, SYNC_HANDLER_CLOG, false);
1884 noah@leadboat.com 815 : 1150 : SlruPagePrecedesUnitTests(XactCtl, CLOG_XACTS_PER_PAGE);
8968 tgl@sss.pgh.pa.us 816 : 1150 : }
817 : :
818 : : /*
819 : : * GUC check_hook for transaction_buffers
820 : : */
821 : : bool
746 alvherre@alvh.no-ip. 822 : 2329 : check_transaction_buffers(int *newval, void **extra, GucSource source)
823 : : {
824 : 2329 : return check_slru_buffers("transaction_buffers", newval);
825 : : }
826 : :
827 : : /*
828 : : * This func must be called ONCE on system install. It creates
829 : : * the initial CLOG segment. (The CLOG directory is assumed to
830 : : * have been created by initdb, and CLOGShmemInit must have been
831 : : * called already.)
832 : : */
833 : : void
8968 tgl@sss.pgh.pa.us 834 : 51 : BootStrapCLOG(void)
835 : : {
836 : : /* Zero the initial page and flush it to disk */
251 alvherre@kurilemu.de 837 :GNC 51 : SimpleLruZeroAndWritePage(XactCtl, 0);
8968 tgl@sss.pgh.pa.us 838 :GIC 51 : }
839 : :
840 : : /*
841 : : * This must be called ONCE during postmaster or standalone-backend startup,
842 : : * after StartupXLOG has initialized TransamVariables->nextXid.
843 : : */
844 : : void
8968 tgl@sss.pgh.pa.us 845 :CBC 1000 : StartupCLOG(void)
846 : : {
828 heikki.linnakangas@i 847 : 1000 : TransactionId xid = XidFromFullTransactionId(TransamVariables->nextXid);
837 akorotkov@postgresql 848 : 1000 : int64 pageno = TransactionIdToPage(xid);
849 : :
850 : : /*
851 : : * Initialize our idea of the latest page number.
852 : : */
768 alvherre@alvh.no-ip. 853 : 1000 : pg_atomic_write_u64(&XactCtl->shared->latest_page_number, pageno);
5247 simon@2ndQuadrant.co 854 : 1000 : }
855 : :
856 : : /*
857 : : * This must be called ONCE at the end of startup/recovery.
858 : : */
859 : : void
860 : 939 : TrimCLOG(void)
861 : : {
828 heikki.linnakangas@i 862 : 939 : TransactionId xid = XidFromFullTransactionId(TransamVariables->nextXid);
837 akorotkov@postgresql 863 : 939 : int64 pageno = TransactionIdToPage(xid);
746 alvherre@alvh.no-ip. 864 : 939 : LWLock *lock = SimpleLruGetBankLock(XactCtl, pageno);
865 : :
866 : 939 : LWLockAcquire(lock, LW_EXCLUSIVE);
867 : :
868 : : /*
869 : : * Zero out the remainder of the current clog page. Under normal
870 : : * circumstances it should be zeroes already, but it seems at least
871 : : * theoretically possible that XLOG replay will have settled on a nextXID
872 : : * value that is less than the last XID actually used and marked by the
873 : : * previous database lifecycle (since subtransaction commit writes clog
874 : : * but makes no WAL entry). Let's just be safe. (We need not worry about
875 : : * pages beyond the current one, since those will be zeroed when first
876 : : * used. For the same reason, there is no need to do anything when
877 : : * nextXid is exactly at a page boundary; and it's likely that the
878 : : * "current" page doesn't exist yet in that case.)
879 : : */
7753 tgl@sss.pgh.pa.us 880 [ + + ]: 939 : if (TransactionIdToPgIndex(xid) != 0)
881 : : {
882 : 938 : int byteno = TransactionIdToByte(xid);
883 : 938 : int bshift = TransactionIdToBIndex(xid) * CLOG_BITS_PER_XACT;
884 : : int slotno;
885 : : char *byteptr;
886 : :
2 heikki.linnakangas@i 887 :GNC 938 : slotno = SimpleLruReadPage(XactCtl, pageno, false, &xid);
2130 tgl@sss.pgh.pa.us 888 :CBC 938 : byteptr = XactCtl->shared->page_buffer[slotno] + byteno;
889 : :
890 : : /* Zero so-far-unused positions in the current byte */
7753 891 : 938 : *byteptr &= (1 << bshift) - 1;
892 : : /* Zero the rest of the page */
893 [ + + + - : 938 : MemSet(byteptr + 1, 0, BLCKSZ - byteno - 1);
+ - - + -
- ]
894 : :
2130 895 : 938 : XactCtl->shared->page_dirty[slotno] = true;
896 : : }
897 : :
746 alvherre@alvh.no-ip. 898 : 939 : LWLockRelease(lock);
8968 tgl@sss.pgh.pa.us 899 : 939 : }
900 : :
901 : : /*
902 : : * Perform a checkpoint --- either during shutdown, or on-the-fly
903 : : */
904 : : void
905 : 1802 : CheckPointCLOG(void)
906 : : {
907 : : /*
908 : : * Write dirty CLOG pages to disk. This may result in sync requests
909 : : * queued for later handling by ProcessSyncRequests(), as part of the
910 : : * checkpoint.
911 : : */
912 : : TRACE_POSTGRESQL_CLOG_CHECKPOINT_START(true);
1997 tmunro@postgresql.or 913 : 1802 : SimpleLruWriteAll(XactCtl, true);
914 : : TRACE_POSTGRESQL_CLOG_CHECKPOINT_DONE(true);
8968 tgl@sss.pgh.pa.us 915 : 1802 : }
916 : :
917 : :
918 : : /*
919 : : * Make sure that CLOG has room for a newly-allocated XID.
920 : : *
921 : : * NB: this is called while holding XidGenLock. We want it to be very fast
922 : : * most of the time; even when it's not so fast, no actual I/O need happen
923 : : * unless we're forced to write out a dirty clog or xlog page to make room
924 : : * in shared memory.
925 : : */
926 : : void
927 : 138799 : ExtendCLOG(TransactionId newestXact)
928 : : {
929 : : int64 pageno;
930 : : LWLock *lock;
931 : :
932 : : /*
933 : : * No work except at first XID of a page. But beware: just after
934 : : * wraparound, the first XID of page zero is FirstNormalTransactionId.
935 : : */
8967 936 [ + - + + ]: 138799 : if (TransactionIdToPgIndex(newestXact) != 0 &&
937 : : !TransactionIdEquals(newestXact, FirstNormalTransactionId))
8968 938 : 138750 : return;
939 : :
940 : 49 : pageno = TransactionIdToPage(newestXact);
746 alvherre@alvh.no-ip. 941 : 49 : lock = SimpleLruGetBankLock(XactCtl, pageno);
942 : :
943 : 49 : LWLockAcquire(lock, LW_EXCLUSIVE);
944 : :
945 : : /* Zero the page and make a WAL entry about it */
251 alvherre@kurilemu.de 946 :GNC 49 : SimpleLruZeroPage(XactCtl, pageno);
947 : 49 : XLogSimpleInsertInt64(RM_CLOG_ID, CLOG_ZEROPAGE, pageno);
948 : :
746 alvherre@alvh.no-ip. 949 :CBC 49 : LWLockRelease(lock);
950 : : }
951 : :
952 : :
953 : : /*
954 : : * Remove all CLOG segments before the one holding the passed transaction ID
955 : : *
956 : : * Before removing any CLOG data, we must flush XLOG to disk, to ensure that
957 : : * any recently-emitted records with freeze plans have reached disk; otherwise
958 : : * a crash and restart might leave us with some unfrozen tuples referencing
959 : : * removed CLOG data. We choose to emit a special TRUNCATE XLOG record too.
960 : : * Replaying the deletion from XLOG is not critical, since the files could
961 : : * just as well be removed later, but doing so prevents a long-running hot
962 : : * standby server from acquiring an unreasonably bloated CLOG directory.
963 : : *
964 : : * Since CLOG segments hold a large number of transactions, the opportunity to
965 : : * actually remove a segment is fairly rare, and so it seems best not to do
966 : : * the XLOG flush unless we have confirmed that there is a removable segment.
967 : : */
968 : : void
3279 rhaas@postgresql.org 969 : 103 : TruncateCLOG(TransactionId oldestXact, Oid oldestxid_datoid)
970 : : {
971 : : int64 cutoffPage;
972 : :
973 : : /*
974 : : * The cutoff point is the start of the segment containing oldestXact. We
975 : : * pass the *page* containing oldestXact to SimpleLruTruncate.
976 : : */
8968 tgl@sss.pgh.pa.us 977 : 103 : cutoffPage = TransactionIdToPage(oldestXact);
978 : :
979 : : /* Check to see if there's any files that could be removed */
2130 980 [ + - ]: 103 : if (!SlruScanDirectory(XactCtl, SlruScanDirCbReportPresence, &cutoffPage))
7874 981 : 103 : return; /* nothing to remove */
982 : :
983 : : /*
984 : : * Advance oldestClogXid before truncating clog, so concurrent xact status
985 : : * lookups can ensure they don't attempt to access truncated-away clog.
986 : : *
987 : : * It's only necessary to do this if we will actually truncate away clog
988 : : * pages.
989 : : */
3279 rhaas@postgresql.org 990 :UBC 0 : AdvanceOldestClogXid(oldestXact);
991 : :
992 : : /*
993 : : * Write XLOG record and flush XLOG to disk. We record the oldest xid
994 : : * we're keeping information about here so we can ensure that it's always
995 : : * ahead of clog truncation in case we crash, and so a standby finds out
996 : : * the new valid xid before the next checkpoint.
997 : : */
998 : 0 : WriteTruncateXlogRec(cutoffPage, oldestXact, oldestxid_datoid);
999 : :
1000 : : /* Now we can remove the old CLOG segment(s) */
2130 tgl@sss.pgh.pa.us 1001 : 0 : SimpleLruTruncate(XactCtl, cutoffPage);
1002 : : }
1003 : :
1004 : :
1005 : : /*
1006 : : * Decide whether a CLOG page number is "older" for truncation purposes.
1007 : : *
1008 : : * We need to use comparison of TransactionIds here in order to do the right
1009 : : * thing with wraparound XID arithmetic. However, TransactionIdPrecedes()
1010 : : * would get weird about permanent xact IDs. So, offset both such that xid1,
1011 : : * xid2, and xid2 + CLOG_XACTS_PER_PAGE - 1 are all normal XIDs; this offset
1012 : : * is relevant to page 0 and to the page preceding page 0.
1013 : : *
1014 : : * The page containing oldestXact-2^31 is the important edge case. The
1015 : : * portion of that page equaling or following oldestXact-2^31 is expendable,
1016 : : * but the portion preceding oldestXact-2^31 is not. When oldestXact-2^31 is
1017 : : * the first XID of a page and segment, the entire page and segment is
1018 : : * expendable, and we could truncate the segment. Recognizing that case would
1019 : : * require making oldestXact, not just the page containing oldestXact,
1020 : : * available to this callback. The benefit would be rare and small, so we
1021 : : * don't optimize that edge case.
1022 : : */
1023 : : static bool
837 akorotkov@postgresql 1024 :CBC 44953 : CLOGPagePrecedes(int64 page1, int64 page2)
1025 : : {
1026 : : TransactionId xid1;
1027 : : TransactionId xid2;
1028 : :
8907 tgl@sss.pgh.pa.us 1029 : 44953 : xid1 = ((TransactionId) page1) * CLOG_XACTS_PER_PAGE;
1884 noah@leadboat.com 1030 : 44953 : xid1 += FirstNormalTransactionId + 1;
8907 tgl@sss.pgh.pa.us 1031 : 44953 : xid2 = ((TransactionId) page2) * CLOG_XACTS_PER_PAGE;
1884 noah@leadboat.com 1032 : 44953 : xid2 += FirstNormalTransactionId + 1;
1033 : :
1034 [ + + + + ]: 74853 : return (TransactionIdPrecedes(xid1, xid2) &&
1035 : 29900 : TransactionIdPrecedes(xid1, xid2 + CLOG_XACTS_PER_PAGE - 1));
1036 : : }
1037 : :
1038 : : static int
2 heikki.linnakangas@i 1039 :UNC 0 : clog_errdetail_for_io_error(const void *opaque_data)
1040 : : {
1041 : 0 : TransactionId xid = *(const TransactionId *) opaque_data;
1042 : :
1043 : 0 : return errdetail("Could not access commit status of transaction %u.", xid);
2 heikki.linnakangas@i 1044 :ECB (48) : }
1045 : :
1046 : :
1047 : : /*
1048 : : * Write a TRUNCATE xlog record
1049 : : *
1050 : : * We must flush the xlog record to disk before returning --- see notes
1051 : : * in TruncateCLOG().
1052 : : */
1053 : : static void
837 akorotkov@postgresql 1054 :UBC 0 : WriteTruncateXlogRec(int64 pageno, TransactionId oldestXact, Oid oldestXactDb)
1055 : : {
1056 : : XLogRecPtr recptr;
1057 : : xl_clog_truncate xlrec;
1058 : :
3279 rhaas@postgresql.org 1059 : 0 : xlrec.pageno = pageno;
1060 : 0 : xlrec.oldestXact = oldestXact;
1061 : 0 : xlrec.oldestXactDb = oldestXactDb;
1062 : :
4133 heikki.linnakangas@i 1063 : 0 : XLogBeginInsert();
397 peter@eisentraut.org 1064 : 0 : XLogRegisterData(&xlrec, sizeof(xl_clog_truncate));
4133 heikki.linnakangas@i 1065 : 0 : recptr = XLogInsert(RM_CLOG_ID, CLOG_TRUNCATE);
7070 tgl@sss.pgh.pa.us 1066 : 0 : XLogFlush(recptr);
1067 : 0 : }
1068 : :
1069 : : /*
1070 : : * CLOG resource manager's routines
1071 : : */
1072 : : void
4133 heikki.linnakangas@i 1073 : 0 : clog_redo(XLogReaderState *record)
1074 : : {
1075 : 0 : uint8 info = XLogRecGetInfo(record) & ~XLR_INFO_MASK;
1076 : :
1077 : : /* Backup blocks are not used in clog records */
1078 [ # # ]: 0 : Assert(!XLogRecHasAnyBlockRefs(record));
1079 : :
7874 tgl@sss.pgh.pa.us 1080 [ # # ]: 0 : if (info == CLOG_ZEROPAGE)
1081 : : {
1082 : : int64 pageno;
1083 : :
837 akorotkov@postgresql 1084 : 0 : memcpy(&pageno, XLogRecGetData(record), sizeof(pageno));
251 alvherre@kurilemu.de 1085 :UNC 0 : SimpleLruZeroAndWritePage(XactCtl, pageno);
1086 : : }
7070 tgl@sss.pgh.pa.us 1087 [ # # ]:UBC 0 : else if (info == CLOG_TRUNCATE)
1088 : : {
1089 : : xl_clog_truncate xlrec;
1090 : :
3279 rhaas@postgresql.org 1091 : 0 : memcpy(&xlrec, XLogRecGetData(record), sizeof(xl_clog_truncate));
1092 : :
1093 : 0 : AdvanceOldestClogXid(xlrec.oldestXact);
1094 : :
2130 tgl@sss.pgh.pa.us 1095 : 0 : SimpleLruTruncate(XactCtl, xlrec.pageno);
1096 : : }
1097 : : else
7070 1098 [ # # ]: 0 : elog(PANIC, "clog_redo: unknown op code %u", info);
7874 1099 : 0 : }
1100 : :
1101 : : /*
1102 : : * Entrypoint for sync.c to sync clog files.
1103 : : */
1104 : : int
1997 tmunro@postgresql.or 1105 : 0 : clogsyncfiletag(const FileTag *ftag, char *path)
1106 : : {
1107 : 0 : return SlruSyncFileTag(XactCtl, ftag, path);
1108 : : }
|