1 /*-------------------------------------------------------------------------
2 *
3 * checkpointer.c
4 *
5 * The checkpointer is new as of Postgres 9.2. It handles all checkpoints.
6 * Checkpoints are automatically dispatched after a certain amount of time has
7 * elapsed since the last one, and it can be signaled to perform requested
8 * checkpoints as well. (The GUC parameter that mandates a checkpoint every
9 * so many WAL segments is implemented by having backends signal when they
10 * fill WAL segments; the checkpointer itself doesn't watch for the
11 * condition.)
12 *
13 * The checkpointer is started by the postmaster as soon as the startup
14 * subprocess finishes, or as soon as recovery begins if we are doing archive
15 * recovery. It remains alive until the postmaster commands it to terminate.
16 * Normal termination is by SIGUSR2, which instructs the checkpointer to
17 * execute a shutdown checkpoint and then exit(0). (All backends must be
18 * stopped before SIGUSR2 is issued!) Emergency termination is by SIGQUIT;
19 * like any backend, the checkpointer will simply abort and exit on SIGQUIT.
20 *
21 * If the checkpointer exits unexpectedly, the postmaster treats that the same
22 * as a backend crash: shared memory may be corrupted, so remaining backends
23 * should be killed by SIGQUIT and then a recovery cycle started. (Even if
24 * shared memory isn't corrupted, we have lost information about which
25 * files need to be fsync'd for the next checkpoint, and so a system
26 * restart needs to be forced.)
27 *
28 *
29 * Portions Copyright (c) 1996-2017, PostgreSQL Global Development Group
30 *
31 *
32 * IDENTIFICATION
33 * src/backend/postmaster/checkpointer.c
34 *
35 *-------------------------------------------------------------------------
36 */
37 #include "postgres.h"
38
39 #include <signal.h>
40 #include <sys/time.h>
41 #include <time.h>
42 #include <unistd.h>
43
44 #include "access/xlog.h"
45 #include "access/xlog_internal.h"
46 #include "libpq/pqsignal.h"
47 #include "miscadmin.h"
48 #include "pgstat.h"
49 #include "postmaster/bgwriter.h"
50 #include "replication/syncrep.h"
51 #include "storage/bufmgr.h"
52 #include "storage/condition_variable.h"
53 #include "storage/fd.h"
54 #include "storage/ipc.h"
55 #include "storage/lwlock.h"
56 #include "storage/proc.h"
57 #include "storage/shmem.h"
58 #include "storage/smgr.h"
59 #include "storage/spin.h"
60 #include "utils/guc.h"
61 #include "utils/memutils.h"
62 #include "utils/resowner.h"
63
64
65 /*----------
66 * Shared memory area for communication between checkpointer and backends
67 *
68 * The ckpt counters allow backends to watch for completion of a checkpoint
69 * request they send. Here's how it works:
70 * * At start of a checkpoint, checkpointer reads (and clears) the request
71 * flags and increments ckpt_started, while holding ckpt_lck.
72 * * On completion of a checkpoint, checkpointer sets ckpt_done to
73 * equal ckpt_started.
74 * * On failure of a checkpoint, checkpointer increments ckpt_failed
75 * and sets ckpt_done to equal ckpt_started.
76 *
77 * The algorithm for backends is:
78 * 1. Record current values of ckpt_failed and ckpt_started, and
79 * set request flags, while holding ckpt_lck.
80 * 2. Send signal to request checkpoint.
81 * 3. Sleep until ckpt_started changes. Now you know a checkpoint has
82 * begun since you started this algorithm (although *not* that it was
83 * specifically initiated by your signal), and that it is using your flags.
84 * 4. Record new value of ckpt_started.
85 * 5. Sleep until ckpt_done >= saved value of ckpt_started. (Use modulo
86 * arithmetic here in case counters wrap around.) Now you know a
87 * checkpoint has started and completed, but not whether it was
88 * successful.
89 * 6. If ckpt_failed is different from the originally saved value,
90 * assume request failed; otherwise it was definitely successful.
91 *
92 * ckpt_flags holds the OR of the checkpoint request flags sent by all
93 * requesting backends since the last checkpoint start. The flags are
94 * chosen so that OR'ing is the correct way to combine multiple requests.
95 *
96 * num_backend_writes is used to count the number of buffer writes performed
97 * by user backend processes. This counter should be wide enough that it
98 * can't overflow during a single processing cycle. num_backend_fsync
99 * counts the subset of those writes that also had to do their own fsync,
100 * because the checkpointer failed to absorb their request.
101 *
102 * The requests array holds fsync requests sent by backends and not yet
103 * absorbed by the checkpointer.
104 *
105 * Unlike the checkpoint fields, num_backend_writes, num_backend_fsync, and
106 * the requests fields are protected by CheckpointerCommLock.
107 *----------
108 */
109 typedef struct
110 {
111 RelFileNode rnode;
112 ForkNumber forknum;
113 BlockNumber segno; /* see md.c for special values */
114 /* might add a real request-type field later; not needed yet */
115 } CheckpointerRequest;
116
117 typedef struct
118 {
119 pid_t checkpointer_pid; /* PID (0 if not started) */
120
121 slock_t ckpt_lck; /* protects all the ckpt_* fields */
122
123 int ckpt_started; /* advances when checkpoint starts */
124 int ckpt_done; /* advances when checkpoint done */
125 int ckpt_failed; /* advances when checkpoint fails */
126
127 int ckpt_flags; /* checkpoint flags, as defined in xlog.h */
128
129 uint32 num_backend_writes; /* counts user backend buffer writes */
130 uint32 num_backend_fsync; /* counts user backend fsync calls */
131
132 int num_requests; /* current # of requests */
133 int max_requests; /* allocated array size */
134 CheckpointerRequest requests[FLEXIBLE_ARRAY_MEMBER];
135 } CheckpointerShmemStruct;
136
137 static CheckpointerShmemStruct *CheckpointerShmem;
138
139 /* interval for calling AbsorbFsyncRequests in CheckpointWriteDelay */
140 #define WRITES_PER_ABSORB 1000
141
142 /*
143 * GUC parameters
144 */
145 int CheckPointTimeout = 300;
146 int CheckPointWarning = 30;
147 double CheckPointCompletionTarget = 0.5;
148
149 /*
150 * Flags set by interrupt handlers for later service in the main loop.
151 */
152 static volatile sig_atomic_t got_SIGHUP = false;
153 static volatile sig_atomic_t shutdown_requested = false;
154
155 /*
156 * Private state
157 */
158 static bool ckpt_active = false;
159
160 /* these values are valid when ckpt_active is true: */
161 static pg_time_t ckpt_start_time;
162 static XLogRecPtr ckpt_start_recptr;
163 static double ckpt_cached_elapsed;
164
165 static pg_time_t last_checkpoint_time;
166 static pg_time_t last_xlog_switch_time;
167
168 /* Prototypes for private functions */
169
170 static void CheckArchiveTimeout(void);
171 static bool IsCheckpointOnSchedule(double progress);
172 static bool ImmediateCheckpointRequested(void);
173 static bool CompactCheckpointerRequestQueue(void);
174 static void UpdateSharedMemoryConfig(void);
175
176 /* Signal handlers */
177
178 static void chkpt_quickdie(SIGNAL_ARGS);
179 static void ChkptSigHupHandler(SIGNAL_ARGS);
180 static void ReqCheckpointHandler(SIGNAL_ARGS);
181 static void chkpt_sigusr1_handler(SIGNAL_ARGS);
182 static void ReqShutdownHandler(SIGNAL_ARGS);
183
184
185 /*
186 * Main entry point for checkpointer process
187 *
188 * This is invoked from AuxiliaryProcessMain, which has already created the
189 * basic execution environment, but not enabled signals yet.
190 */
191 void
CheckpointerMain(void)192 CheckpointerMain(void)
193 {
194 sigjmp_buf local_sigjmp_buf;
195 MemoryContext checkpointer_context;
196
197 CheckpointerShmem->checkpointer_pid = MyProcPid;
198
199 /*
200 * Properly accept or ignore signals the postmaster might send us
201 *
202 * Note: we deliberately ignore SIGTERM, because during a standard Unix
203 * system shutdown cycle, init will SIGTERM all processes at once. We
204 * want to wait for the backends to exit, whereupon the postmaster will
205 * tell us it's okay to shut down (via SIGUSR2).
206 */
207 pqsignal(SIGHUP, ChkptSigHupHandler); /* set flag to read config file */
208 pqsignal(SIGINT, ReqCheckpointHandler); /* request checkpoint */
209 pqsignal(SIGTERM, SIG_IGN); /* ignore SIGTERM */
210 pqsignal(SIGQUIT, chkpt_quickdie); /* hard crash time */
211 pqsignal(SIGALRM, SIG_IGN);
212 pqsignal(SIGPIPE, SIG_IGN);
213 pqsignal(SIGUSR1, chkpt_sigusr1_handler);
214 pqsignal(SIGUSR2, ReqShutdownHandler); /* request shutdown */
215
216 /*
217 * Reset some signals that are accepted by postmaster but not here
218 */
219 pqsignal(SIGCHLD, SIG_DFL);
220 pqsignal(SIGTTIN, SIG_DFL);
221 pqsignal(SIGTTOU, SIG_DFL);
222 pqsignal(SIGCONT, SIG_DFL);
223 pqsignal(SIGWINCH, SIG_DFL);
224
225 /* We allow SIGQUIT (quickdie) at all times */
226 sigdelset(&BlockSig, SIGQUIT);
227
228 /*
229 * Initialize so that first time-driven event happens at the correct time.
230 */
231 last_checkpoint_time = last_xlog_switch_time = (pg_time_t) time(NULL);
232
233 /*
234 * Create a resource owner to keep track of our resources (currently only
235 * buffer pins).
236 */
237 CurrentResourceOwner = ResourceOwnerCreate(NULL, "Checkpointer");
238
239 /*
240 * Create a memory context that we will do all our work in. We do this so
241 * that we can reset the context during error recovery and thereby avoid
242 * possible memory leaks. Formerly this code just ran in
243 * TopMemoryContext, but resetting that would be a really bad idea.
244 */
245 checkpointer_context = AllocSetContextCreate(TopMemoryContext,
246 "Checkpointer",
247 ALLOCSET_DEFAULT_SIZES);
248 MemoryContextSwitchTo(checkpointer_context);
249
250 /*
251 * If an exception is encountered, processing resumes here.
252 *
253 * See notes in postgres.c about the design of this coding.
254 */
255 if (sigsetjmp(local_sigjmp_buf, 1) != 0)
256 {
257 /* Since not using PG_TRY, must reset error stack by hand */
258 error_context_stack = NULL;
259
260 /* Prevent interrupts while cleaning up */
261 HOLD_INTERRUPTS();
262
263 /* Report the error to the server log */
264 EmitErrorReport();
265
266 /*
267 * These operations are really just a minimal subset of
268 * AbortTransaction(). We don't have very many resources to worry
269 * about in checkpointer, but we do have LWLocks, buffers, and temp
270 * files.
271 */
272 LWLockReleaseAll();
273 ConditionVariableCancelSleep();
274 pgstat_report_wait_end();
275 AbortBufferIO();
276 UnlockBuffers();
277 /* buffer pins are released here: */
278 ResourceOwnerRelease(CurrentResourceOwner,
279 RESOURCE_RELEASE_BEFORE_LOCKS,
280 false, true);
281 /* we needn't bother with the other ResourceOwnerRelease phases */
282 AtEOXact_Buffers(false);
283 AtEOXact_SMgr();
284 AtEOXact_Files();
285 AtEOXact_HashTables(false);
286
287 /* Warn any waiting backends that the checkpoint failed. */
288 if (ckpt_active)
289 {
290 SpinLockAcquire(&CheckpointerShmem->ckpt_lck);
291 CheckpointerShmem->ckpt_failed++;
292 CheckpointerShmem->ckpt_done = CheckpointerShmem->ckpt_started;
293 SpinLockRelease(&CheckpointerShmem->ckpt_lck);
294
295 ckpt_active = false;
296 }
297
298 /*
299 * Now return to normal top-level context and clear ErrorContext for
300 * next time.
301 */
302 MemoryContextSwitchTo(checkpointer_context);
303 FlushErrorState();
304
305 /* Flush any leaked data in the top-level context */
306 MemoryContextResetAndDeleteChildren(checkpointer_context);
307
308 /* Now we can allow interrupts again */
309 RESUME_INTERRUPTS();
310
311 /*
312 * Sleep at least 1 second after any error. A write error is likely
313 * to be repeated, and we don't want to be filling the error logs as
314 * fast as we can.
315 */
316 pg_usleep(1000000L);
317
318 /*
319 * Close all open files after any error. This is helpful on Windows,
320 * where holding deleted files open causes various strange errors.
321 * It's not clear we need it elsewhere, but shouldn't hurt.
322 */
323 smgrcloseall();
324 }
325
326 /* We can now handle ereport(ERROR) */
327 PG_exception_stack = &local_sigjmp_buf;
328
329 /*
330 * Unblock signals (they were blocked when the postmaster forked us)
331 */
332 PG_SETMASK(&UnBlockSig);
333
334 /*
335 * Ensure all shared memory values are set correctly for the config. Doing
336 * this here ensures no race conditions from other concurrent updaters.
337 */
338 UpdateSharedMemoryConfig();
339
340 /*
341 * Advertise our latch that backends can use to wake us up while we're
342 * sleeping.
343 */
344 ProcGlobal->checkpointerLatch = &MyProc->procLatch;
345
346 /*
347 * Loop forever
348 */
349 for (;;)
350 {
351 bool do_checkpoint = false;
352 int flags = 0;
353 pg_time_t now;
354 int elapsed_secs;
355 int cur_timeout;
356 int rc;
357
358 /* Clear any already-pending wakeups */
359 ResetLatch(MyLatch);
360
361 /*
362 * Process any requests or signals received recently.
363 */
364 AbsorbFsyncRequests();
365
366 if (got_SIGHUP)
367 {
368 got_SIGHUP = false;
369 ProcessConfigFile(PGC_SIGHUP);
370
371 /*
372 * Checkpointer is the last process to shut down, so we ask it to
373 * hold the keys for a range of other tasks required most of which
374 * have nothing to do with checkpointing at all.
375 *
376 * For various reasons, some config values can change dynamically
377 * so the primary copy of them is held in shared memory to make
378 * sure all backends see the same value. We make Checkpointer
379 * responsible for updating the shared memory copy if the
380 * parameter setting changes because of SIGHUP.
381 */
382 UpdateSharedMemoryConfig();
383 }
384 if (shutdown_requested)
385 {
386 /*
387 * From here on, elog(ERROR) should end with exit(1), not send
388 * control back to the sigsetjmp block above
389 */
390 ExitOnAnyError = true;
391 /* Close down the database */
392 ShutdownXLOG(0, 0);
393 /* Normal exit from the checkpointer is here */
394 proc_exit(0); /* done */
395 }
396
397 /*
398 * Detect a pending checkpoint request by checking whether the flags
399 * word in shared memory is nonzero. We shouldn't need to acquire the
400 * ckpt_lck for this.
401 */
402 if (((volatile CheckpointerShmemStruct *) CheckpointerShmem)->ckpt_flags)
403 {
404 do_checkpoint = true;
405 BgWriterStats.m_requested_checkpoints++;
406 }
407
408 /*
409 * Force a checkpoint if too much time has elapsed since the last one.
410 * Note that we count a timed checkpoint in stats only when this
411 * occurs without an external request, but we set the CAUSE_TIME flag
412 * bit even if there is also an external request.
413 */
414 now = (pg_time_t) time(NULL);
415 elapsed_secs = now - last_checkpoint_time;
416 if (elapsed_secs >= CheckPointTimeout)
417 {
418 if (!do_checkpoint)
419 BgWriterStats.m_timed_checkpoints++;
420 do_checkpoint = true;
421 flags |= CHECKPOINT_CAUSE_TIME;
422 }
423
424 /*
425 * Do a checkpoint if requested.
426 */
427 if (do_checkpoint)
428 {
429 bool ckpt_performed = false;
430 bool do_restartpoint;
431
432 /*
433 * Check if we should perform a checkpoint or a restartpoint. As a
434 * side-effect, RecoveryInProgress() initializes TimeLineID if
435 * it's not set yet.
436 */
437 do_restartpoint = RecoveryInProgress();
438
439 /*
440 * Atomically fetch the request flags to figure out what kind of a
441 * checkpoint we should perform, and increase the started-counter
442 * to acknowledge that we've started a new checkpoint.
443 */
444 SpinLockAcquire(&CheckpointerShmem->ckpt_lck);
445 flags |= CheckpointerShmem->ckpt_flags;
446 CheckpointerShmem->ckpt_flags = 0;
447 CheckpointerShmem->ckpt_started++;
448 SpinLockRelease(&CheckpointerShmem->ckpt_lck);
449
450 /*
451 * The end-of-recovery checkpoint is a real checkpoint that's
452 * performed while we're still in recovery.
453 */
454 if (flags & CHECKPOINT_END_OF_RECOVERY)
455 do_restartpoint = false;
456
457 /*
458 * We will warn if (a) too soon since last checkpoint (whatever
459 * caused it) and (b) somebody set the CHECKPOINT_CAUSE_XLOG flag
460 * since the last checkpoint start. Note in particular that this
461 * implementation will not generate warnings caused by
462 * CheckPointTimeout < CheckPointWarning.
463 */
464 if (!do_restartpoint &&
465 (flags & CHECKPOINT_CAUSE_XLOG) &&
466 elapsed_secs < CheckPointWarning)
467 ereport(LOG,
468 (errmsg_plural("checkpoints are occurring too frequently (%d second apart)",
469 "checkpoints are occurring too frequently (%d seconds apart)",
470 elapsed_secs,
471 elapsed_secs),
472 errhint("Consider increasing the configuration parameter \"max_wal_size\".")));
473
474 /*
475 * Initialize checkpointer-private variables used during
476 * checkpoint.
477 */
478 ckpt_active = true;
479 if (do_restartpoint)
480 ckpt_start_recptr = GetXLogReplayRecPtr(NULL);
481 else
482 ckpt_start_recptr = GetInsertRecPtr();
483 ckpt_start_time = now;
484 ckpt_cached_elapsed = 0;
485
486 /*
487 * Do the checkpoint.
488 */
489 if (!do_restartpoint)
490 {
491 CreateCheckPoint(flags);
492 ckpt_performed = true;
493 }
494 else
495 ckpt_performed = CreateRestartPoint(flags);
496
497 /*
498 * After any checkpoint, close all smgr files. This is so we
499 * won't hang onto smgr references to deleted files indefinitely.
500 */
501 smgrcloseall();
502
503 /*
504 * Indicate checkpoint completion to any waiting backends.
505 */
506 SpinLockAcquire(&CheckpointerShmem->ckpt_lck);
507 CheckpointerShmem->ckpt_done = CheckpointerShmem->ckpt_started;
508 SpinLockRelease(&CheckpointerShmem->ckpt_lck);
509
510 if (ckpt_performed)
511 {
512 /*
513 * Note we record the checkpoint start time not end time as
514 * last_checkpoint_time. This is so that time-driven
515 * checkpoints happen at a predictable spacing.
516 */
517 last_checkpoint_time = now;
518 }
519 else
520 {
521 /*
522 * We were not able to perform the restartpoint (checkpoints
523 * throw an ERROR in case of error). Most likely because we
524 * have not received any new checkpoint WAL records since the
525 * last restartpoint. Try again in 15 s.
526 */
527 last_checkpoint_time = now - CheckPointTimeout + 15;
528 }
529
530 ckpt_active = false;
531 }
532
533 /* Check for archive_timeout and switch xlog files if necessary. */
534 CheckArchiveTimeout();
535
536 /*
537 * Send off activity statistics to the stats collector. (The reason
538 * why we re-use bgwriter-related code for this is that the bgwriter
539 * and checkpointer used to be just one process. It's probably not
540 * worth the trouble to split the stats support into two independent
541 * stats message types.)
542 */
543 pgstat_send_bgwriter();
544
545 /*
546 * Sleep until we are signaled or it's time for another checkpoint or
547 * xlog file switch.
548 */
549 now = (pg_time_t) time(NULL);
550 elapsed_secs = now - last_checkpoint_time;
551 if (elapsed_secs >= CheckPointTimeout)
552 continue; /* no sleep for us ... */
553 cur_timeout = CheckPointTimeout - elapsed_secs;
554 if (XLogArchiveTimeout > 0 && !RecoveryInProgress())
555 {
556 elapsed_secs = now - last_xlog_switch_time;
557 if (elapsed_secs >= XLogArchiveTimeout)
558 continue; /* no sleep for us ... */
559 cur_timeout = Min(cur_timeout, XLogArchiveTimeout - elapsed_secs);
560 }
561
562 rc = WaitLatch(MyLatch,
563 WL_LATCH_SET | WL_TIMEOUT | WL_POSTMASTER_DEATH,
564 cur_timeout * 1000L /* convert to ms */ ,
565 WAIT_EVENT_CHECKPOINTER_MAIN);
566
567 /*
568 * Emergency bailout if postmaster has died. This is to avoid the
569 * necessity for manual cleanup of all postmaster children.
570 */
571 if (rc & WL_POSTMASTER_DEATH)
572 exit(1);
573 }
574 }
575
576 /*
577 * CheckArchiveTimeout -- check for archive_timeout and switch xlog files
578 *
579 * This will switch to a new WAL file and force an archive file write if
580 * meaningful activity is recorded in the current WAL file. This includes most
581 * writes, including just a single checkpoint record, but excludes WAL records
582 * that were inserted with the XLOG_MARK_UNIMPORTANT flag being set (like
583 * snapshots of running transactions). Such records, depending on
584 * configuration, occur on regular intervals and don't contain important
585 * information. This avoids generating archives with a few unimportant
586 * records.
587 */
588 static void
CheckArchiveTimeout(void)589 CheckArchiveTimeout(void)
590 {
591 pg_time_t now;
592 pg_time_t last_time;
593 XLogRecPtr last_switch_lsn;
594
595 if (XLogArchiveTimeout <= 0 || RecoveryInProgress())
596 return;
597
598 now = (pg_time_t) time(NULL);
599
600 /* First we do a quick check using possibly-stale local state. */
601 if ((int) (now - last_xlog_switch_time) < XLogArchiveTimeout)
602 return;
603
604 /*
605 * Update local state ... note that last_xlog_switch_time is the last time
606 * a switch was performed *or requested*.
607 */
608 last_time = GetLastSegSwitchData(&last_switch_lsn);
609
610 last_xlog_switch_time = Max(last_xlog_switch_time, last_time);
611
612 /* Now we can do the real checks */
613 if ((int) (now - last_xlog_switch_time) >= XLogArchiveTimeout)
614 {
615 /*
616 * Switch segment only when "important" WAL has been logged since the
617 * last segment switch (last_switch_lsn points to end of segment
618 * switch occurred in).
619 */
620 if (GetLastImportantRecPtr() > last_switch_lsn)
621 {
622 XLogRecPtr switchpoint;
623
624 /* mark switch as unimportant, avoids triggering checkpoints */
625 switchpoint = RequestXLogSwitch(true);
626
627 /*
628 * If the returned pointer points exactly to a segment boundary,
629 * assume nothing happened.
630 */
631 if ((switchpoint % XLogSegSize) != 0)
632 elog(DEBUG1, "write-ahead log switch forced (archive_timeout=%d)",
633 XLogArchiveTimeout);
634 }
635
636 /*
637 * Update state in any case, so we don't retry constantly when the
638 * system is idle.
639 */
640 last_xlog_switch_time = now;
641 }
642 }
643
644 /*
645 * Returns true if an immediate checkpoint request is pending. (Note that
646 * this does not check the *current* checkpoint's IMMEDIATE flag, but whether
647 * there is one pending behind it.)
648 */
649 static bool
ImmediateCheckpointRequested(void)650 ImmediateCheckpointRequested(void)
651 {
652 volatile CheckpointerShmemStruct *cps = CheckpointerShmem;
653
654 /*
655 * We don't need to acquire the ckpt_lck in this case because we're only
656 * looking at a single flag bit.
657 */
658 if (cps->ckpt_flags & CHECKPOINT_IMMEDIATE)
659 return true;
660 return false;
661 }
662
663 /*
664 * CheckpointWriteDelay -- control rate of checkpoint
665 *
666 * This function is called after each page write performed by BufferSync().
667 * It is responsible for throttling BufferSync()'s write rate to hit
668 * checkpoint_completion_target.
669 *
670 * The checkpoint request flags should be passed in; currently the only one
671 * examined is CHECKPOINT_IMMEDIATE, which disables delays between writes.
672 *
673 * 'progress' is an estimate of how much of the work has been done, as a
674 * fraction between 0.0 meaning none, and 1.0 meaning all done.
675 */
676 void
CheckpointWriteDelay(int flags,double progress)677 CheckpointWriteDelay(int flags, double progress)
678 {
679 static int absorb_counter = WRITES_PER_ABSORB;
680
681 /* Do nothing if checkpoint is being executed by non-checkpointer process */
682 if (!AmCheckpointerProcess())
683 return;
684
685 /*
686 * Perform the usual duties and take a nap, unless we're behind schedule,
687 * in which case we just try to catch up as quickly as possible.
688 */
689 if (!(flags & CHECKPOINT_IMMEDIATE) &&
690 !shutdown_requested &&
691 !ImmediateCheckpointRequested() &&
692 IsCheckpointOnSchedule(progress))
693 {
694 if (got_SIGHUP)
695 {
696 got_SIGHUP = false;
697 ProcessConfigFile(PGC_SIGHUP);
698 /* update shmem copies of config variables */
699 UpdateSharedMemoryConfig();
700 }
701
702 AbsorbFsyncRequests();
703 absorb_counter = WRITES_PER_ABSORB;
704
705 CheckArchiveTimeout();
706
707 /*
708 * Report interim activity statistics to the stats collector.
709 */
710 pgstat_send_bgwriter();
711
712 /*
713 * This sleep used to be connected to bgwriter_delay, typically 200ms.
714 * That resulted in more frequent wakeups if not much work to do.
715 * Checkpointer and bgwriter are no longer related so take the Big
716 * Sleep.
717 */
718 pg_usleep(100000L);
719 }
720 else if (--absorb_counter <= 0)
721 {
722 /*
723 * Absorb pending fsync requests after each WRITES_PER_ABSORB write
724 * operations even when we don't sleep, to prevent overflow of the
725 * fsync request queue.
726 */
727 AbsorbFsyncRequests();
728 absorb_counter = WRITES_PER_ABSORB;
729 }
730 }
731
732 /*
733 * IsCheckpointOnSchedule -- are we on schedule to finish this checkpoint
734 * (or restartpoint) in time?
735 *
736 * Compares the current progress against the time/segments elapsed since last
737 * checkpoint, and returns true if the progress we've made this far is greater
738 * than the elapsed time/segments.
739 */
740 static bool
IsCheckpointOnSchedule(double progress)741 IsCheckpointOnSchedule(double progress)
742 {
743 XLogRecPtr recptr;
744 struct timeval now;
745 double elapsed_xlogs,
746 elapsed_time;
747
748 Assert(ckpt_active);
749
750 /* Scale progress according to checkpoint_completion_target. */
751 progress *= CheckPointCompletionTarget;
752
753 /*
754 * Check against the cached value first. Only do the more expensive
755 * calculations once we reach the target previously calculated. Since
756 * neither time or WAL insert pointer moves backwards, a freshly
757 * calculated value can only be greater than or equal to the cached value.
758 */
759 if (progress < ckpt_cached_elapsed)
760 return false;
761
762 /*
763 * Check progress against WAL segments written and CheckPointSegments.
764 *
765 * We compare the current WAL insert location against the location
766 * computed before calling CreateCheckPoint. The code in XLogInsert that
767 * actually triggers a checkpoint when CheckPointSegments is exceeded
768 * compares against RedoRecptr, so this is not completely accurate.
769 * However, it's good enough for our purposes, we're only calculating an
770 * estimate anyway.
771 *
772 * During recovery, we compare last replayed WAL record's location with
773 * the location computed before calling CreateRestartPoint. That maintains
774 * the same pacing as we have during checkpoints in normal operation, but
775 * we might exceed max_wal_size by a fair amount. That's because there can
776 * be a large gap between a checkpoint's redo-pointer and the checkpoint
777 * record itself, and we only start the restartpoint after we've seen the
778 * checkpoint record. (The gap is typically up to CheckPointSegments *
779 * checkpoint_completion_target where checkpoint_completion_target is the
780 * value that was in effect when the WAL was generated).
781 */
782 if (RecoveryInProgress())
783 recptr = GetXLogReplayRecPtr(NULL);
784 else
785 recptr = GetInsertRecPtr();
786 elapsed_xlogs = (((double) (recptr - ckpt_start_recptr)) / XLogSegSize) / CheckPointSegments;
787
788 if (progress < elapsed_xlogs)
789 {
790 ckpt_cached_elapsed = elapsed_xlogs;
791 return false;
792 }
793
794 /*
795 * Check progress against time elapsed and checkpoint_timeout.
796 */
797 gettimeofday(&now, NULL);
798 elapsed_time = ((double) ((pg_time_t) now.tv_sec - ckpt_start_time) +
799 now.tv_usec / 1000000.0) / CheckPointTimeout;
800
801 if (progress < elapsed_time)
802 {
803 ckpt_cached_elapsed = elapsed_time;
804 return false;
805 }
806
807 /* It looks like we're on schedule. */
808 return true;
809 }
810
811
812 /* --------------------------------
813 * signal handler routines
814 * --------------------------------
815 */
816
817 /*
818 * chkpt_quickdie() occurs when signalled SIGQUIT by the postmaster.
819 *
820 * Some backend has bought the farm,
821 * so we need to stop what we're doing and exit.
822 */
823 static void
chkpt_quickdie(SIGNAL_ARGS)824 chkpt_quickdie(SIGNAL_ARGS)
825 {
826 /*
827 * We DO NOT want to run proc_exit() or atexit() callbacks -- we're here
828 * because shared memory may be corrupted, so we don't want to try to
829 * clean up our transaction. Just nail the windows shut and get out of
830 * town. The callbacks wouldn't be safe to run from a signal handler,
831 * anyway.
832 *
833 * Note we do _exit(2) not _exit(0). This is to force the postmaster into
834 * a system reset cycle if someone sends a manual SIGQUIT to a random
835 * backend. This is necessary precisely because we don't clean up our
836 * shared memory state. (The "dead man switch" mechanism in pmsignal.c
837 * should ensure the postmaster sees this as a crash, too, but no harm in
838 * being doubly sure.)
839 */
840 _exit(2);
841 }
842
843 /* SIGHUP: set flag to re-read config file at next convenient time */
844 static void
ChkptSigHupHandler(SIGNAL_ARGS)845 ChkptSigHupHandler(SIGNAL_ARGS)
846 {
847 int save_errno = errno;
848
849 got_SIGHUP = true;
850 SetLatch(MyLatch);
851
852 errno = save_errno;
853 }
854
855 /* SIGINT: set flag to run a normal checkpoint right away */
856 static void
ReqCheckpointHandler(SIGNAL_ARGS)857 ReqCheckpointHandler(SIGNAL_ARGS)
858 {
859 int save_errno = errno;
860
861 /*
862 * The signalling process should have set ckpt_flags nonzero, so all we
863 * need do is ensure that our main loop gets kicked out of any wait.
864 */
865 SetLatch(MyLatch);
866
867 errno = save_errno;
868 }
869
870 /* SIGUSR1: used for latch wakeups */
871 static void
chkpt_sigusr1_handler(SIGNAL_ARGS)872 chkpt_sigusr1_handler(SIGNAL_ARGS)
873 {
874 int save_errno = errno;
875
876 latch_sigusr1_handler();
877
878 errno = save_errno;
879 }
880
881 /* SIGUSR2: set flag to run a shutdown checkpoint and exit */
882 static void
ReqShutdownHandler(SIGNAL_ARGS)883 ReqShutdownHandler(SIGNAL_ARGS)
884 {
885 int save_errno = errno;
886
887 shutdown_requested = true;
888 SetLatch(MyLatch);
889
890 errno = save_errno;
891 }
892
893
894 /* --------------------------------
895 * communication with backends
896 * --------------------------------
897 */
898
899 /*
900 * CheckpointerShmemSize
901 * Compute space needed for checkpointer-related shared memory
902 */
903 Size
CheckpointerShmemSize(void)904 CheckpointerShmemSize(void)
905 {
906 Size size;
907
908 /*
909 * Currently, the size of the requests[] array is arbitrarily set equal to
910 * NBuffers. This may prove too large or small ...
911 */
912 size = offsetof(CheckpointerShmemStruct, requests);
913 size = add_size(size, mul_size(NBuffers, sizeof(CheckpointerRequest)));
914
915 return size;
916 }
917
918 /*
919 * CheckpointerShmemInit
920 * Allocate and initialize checkpointer-related shared memory
921 */
922 void
CheckpointerShmemInit(void)923 CheckpointerShmemInit(void)
924 {
925 Size size = CheckpointerShmemSize();
926 bool found;
927
928 CheckpointerShmem = (CheckpointerShmemStruct *)
929 ShmemInitStruct("Checkpointer Data",
930 size,
931 &found);
932
933 if (!found)
934 {
935 /*
936 * First time through, so initialize. Note that we zero the whole
937 * requests array; this is so that CompactCheckpointerRequestQueue can
938 * assume that any pad bytes in the request structs are zeroes.
939 */
940 MemSet(CheckpointerShmem, 0, size);
941 SpinLockInit(&CheckpointerShmem->ckpt_lck);
942 CheckpointerShmem->max_requests = NBuffers;
943 }
944 }
945
946 /*
947 * RequestCheckpoint
948 * Called in backend processes to request a checkpoint
949 *
950 * flags is a bitwise OR of the following:
951 * CHECKPOINT_IS_SHUTDOWN: checkpoint is for database shutdown.
952 * CHECKPOINT_END_OF_RECOVERY: checkpoint is for end of WAL recovery.
953 * CHECKPOINT_IMMEDIATE: finish the checkpoint ASAP,
954 * ignoring checkpoint_completion_target parameter.
955 * CHECKPOINT_FORCE: force a checkpoint even if no XLOG activity has occurred
956 * since the last one (implied by CHECKPOINT_IS_SHUTDOWN or
957 * CHECKPOINT_END_OF_RECOVERY).
958 * CHECKPOINT_WAIT: wait for completion before returning (otherwise,
959 * just signal checkpointer to do it, and return).
960 * CHECKPOINT_CAUSE_XLOG: checkpoint is requested due to xlog filling.
961 * (This affects logging, and in particular enables CheckPointWarning.)
962 */
963 void
RequestCheckpoint(int flags)964 RequestCheckpoint(int flags)
965 {
966 int ntries;
967 int old_failed,
968 old_started;
969
970 /*
971 * If in a standalone backend, just do it ourselves.
972 */
973 if (!IsPostmasterEnvironment)
974 {
975 /*
976 * There's no point in doing slow checkpoints in a standalone backend,
977 * because there's no other backends the checkpoint could disrupt.
978 */
979 CreateCheckPoint(flags | CHECKPOINT_IMMEDIATE);
980
981 /*
982 * After any checkpoint, close all smgr files. This is so we won't
983 * hang onto smgr references to deleted files indefinitely.
984 */
985 smgrcloseall();
986
987 return;
988 }
989
990 /*
991 * Atomically set the request flags, and take a snapshot of the counters.
992 * When we see ckpt_started > old_started, we know the flags we set here
993 * have been seen by checkpointer.
994 *
995 * Note that we OR the flags with any existing flags, to avoid overriding
996 * a "stronger" request by another backend. The flag senses must be
997 * chosen to make this work!
998 */
999 SpinLockAcquire(&CheckpointerShmem->ckpt_lck);
1000
1001 old_failed = CheckpointerShmem->ckpt_failed;
1002 old_started = CheckpointerShmem->ckpt_started;
1003 CheckpointerShmem->ckpt_flags |= (flags | CHECKPOINT_REQUESTED);
1004
1005 SpinLockRelease(&CheckpointerShmem->ckpt_lck);
1006
1007 /*
1008 * Send signal to request checkpoint. It's possible that the checkpointer
1009 * hasn't started yet, or is in process of restarting, so we will retry a
1010 * few times if needed. (Actually, more than a few times, since on slow
1011 * or overloaded buildfarm machines, it's been observed that the
1012 * checkpointer can take several seconds to start.) However, if not told
1013 * to wait for the checkpoint to occur, we consider failure to send the
1014 * signal to be nonfatal and merely LOG it. The checkpointer should see
1015 * the request when it does start, with or without getting a signal.
1016 */
1017 #define MAX_SIGNAL_TRIES 600 /* max wait 60.0 sec */
1018 for (ntries = 0;; ntries++)
1019 {
1020 if (CheckpointerShmem->checkpointer_pid == 0)
1021 {
1022 if (ntries >= MAX_SIGNAL_TRIES || !(flags & CHECKPOINT_WAIT))
1023 {
1024 elog((flags & CHECKPOINT_WAIT) ? ERROR : LOG,
1025 "could not signal for checkpoint: checkpointer is not running");
1026 break;
1027 }
1028 }
1029 else if (kill(CheckpointerShmem->checkpointer_pid, SIGINT) != 0)
1030 {
1031 if (ntries >= MAX_SIGNAL_TRIES || !(flags & CHECKPOINT_WAIT))
1032 {
1033 elog((flags & CHECKPOINT_WAIT) ? ERROR : LOG,
1034 "could not signal for checkpoint: %m");
1035 break;
1036 }
1037 }
1038 else
1039 break; /* signal sent successfully */
1040
1041 CHECK_FOR_INTERRUPTS();
1042 pg_usleep(100000L); /* wait 0.1 sec, then retry */
1043 }
1044
1045 /*
1046 * If requested, wait for completion. We detect completion according to
1047 * the algorithm given above.
1048 */
1049 if (flags & CHECKPOINT_WAIT)
1050 {
1051 int new_started,
1052 new_failed;
1053
1054 /* Wait for a new checkpoint to start. */
1055 for (;;)
1056 {
1057 SpinLockAcquire(&CheckpointerShmem->ckpt_lck);
1058 new_started = CheckpointerShmem->ckpt_started;
1059 SpinLockRelease(&CheckpointerShmem->ckpt_lck);
1060
1061 if (new_started != old_started)
1062 break;
1063
1064 CHECK_FOR_INTERRUPTS();
1065 pg_usleep(100000L);
1066 }
1067
1068 /*
1069 * We are waiting for ckpt_done >= new_started, in a modulo sense.
1070 */
1071 for (;;)
1072 {
1073 int new_done;
1074
1075 SpinLockAcquire(&CheckpointerShmem->ckpt_lck);
1076 new_done = CheckpointerShmem->ckpt_done;
1077 new_failed = CheckpointerShmem->ckpt_failed;
1078 SpinLockRelease(&CheckpointerShmem->ckpt_lck);
1079
1080 if (new_done - new_started >= 0)
1081 break;
1082
1083 CHECK_FOR_INTERRUPTS();
1084 pg_usleep(100000L);
1085 }
1086
1087 if (new_failed != old_failed)
1088 ereport(ERROR,
1089 (errmsg("checkpoint request failed"),
1090 errhint("Consult recent messages in the server log for details.")));
1091 }
1092 }
1093
1094 /*
1095 * ForwardFsyncRequest
1096 * Forward a file-fsync request from a backend to the checkpointer
1097 *
1098 * Whenever a backend is compelled to write directly to a relation
1099 * (which should be seldom, if the background writer is getting its job done),
1100 * the backend calls this routine to pass over knowledge that the relation
1101 * is dirty and must be fsync'd before next checkpoint. We also use this
1102 * opportunity to count such writes for statistical purposes.
1103 *
1104 * This functionality is only supported for regular (not backend-local)
1105 * relations, so the rnode argument is intentionally RelFileNode not
1106 * RelFileNodeBackend.
1107 *
1108 * segno specifies which segment (not block!) of the relation needs to be
1109 * fsync'd. (Since the valid range is much less than BlockNumber, we can
1110 * use high values for special flags; that's all internal to md.c, which
1111 * see for details.)
1112 *
1113 * To avoid holding the lock for longer than necessary, we normally write
1114 * to the requests[] queue without checking for duplicates. The checkpointer
1115 * will have to eliminate dups internally anyway. However, if we discover
1116 * that the queue is full, we make a pass over the entire queue to compact
1117 * it. This is somewhat expensive, but the alternative is for the backend
1118 * to perform its own fsync, which is far more expensive in practice. It
1119 * is theoretically possible a backend fsync might still be necessary, if
1120 * the queue is full and contains no duplicate entries. In that case, we
1121 * let the backend know by returning false.
1122 */
1123 bool
ForwardFsyncRequest(RelFileNode rnode,ForkNumber forknum,BlockNumber segno)1124 ForwardFsyncRequest(RelFileNode rnode, ForkNumber forknum, BlockNumber segno)
1125 {
1126 CheckpointerRequest *request;
1127 bool too_full;
1128
1129 if (!IsUnderPostmaster)
1130 return false; /* probably shouldn't even get here */
1131
1132 if (AmCheckpointerProcess())
1133 elog(ERROR, "ForwardFsyncRequest must not be called in checkpointer");
1134
1135 LWLockAcquire(CheckpointerCommLock, LW_EXCLUSIVE);
1136
1137 /* Count all backend writes regardless of if they fit in the queue */
1138 if (!AmBackgroundWriterProcess())
1139 CheckpointerShmem->num_backend_writes++;
1140
1141 /*
1142 * If the checkpointer isn't running or the request queue is full, the
1143 * backend will have to perform its own fsync request. But before forcing
1144 * that to happen, we can try to compact the request queue.
1145 */
1146 if (CheckpointerShmem->checkpointer_pid == 0 ||
1147 (CheckpointerShmem->num_requests >= CheckpointerShmem->max_requests &&
1148 !CompactCheckpointerRequestQueue()))
1149 {
1150 /*
1151 * Count the subset of writes where backends have to do their own
1152 * fsync
1153 */
1154 if (!AmBackgroundWriterProcess())
1155 CheckpointerShmem->num_backend_fsync++;
1156 LWLockRelease(CheckpointerCommLock);
1157 return false;
1158 }
1159
1160 /* OK, insert request */
1161 request = &CheckpointerShmem->requests[CheckpointerShmem->num_requests++];
1162 request->rnode = rnode;
1163 request->forknum = forknum;
1164 request->segno = segno;
1165
1166 /* If queue is more than half full, nudge the checkpointer to empty it */
1167 too_full = (CheckpointerShmem->num_requests >=
1168 CheckpointerShmem->max_requests / 2);
1169
1170 LWLockRelease(CheckpointerCommLock);
1171
1172 /* ... but not till after we release the lock */
1173 if (too_full && ProcGlobal->checkpointerLatch)
1174 SetLatch(ProcGlobal->checkpointerLatch);
1175
1176 return true;
1177 }
1178
1179 /*
1180 * CompactCheckpointerRequestQueue
1181 * Remove duplicates from the request queue to avoid backend fsyncs.
1182 * Returns "true" if any entries were removed.
1183 *
1184 * Although a full fsync request queue is not common, it can lead to severe
1185 * performance problems when it does happen. So far, this situation has
1186 * only been observed to occur when the system is under heavy write load,
1187 * and especially during the "sync" phase of a checkpoint. Without this
1188 * logic, each backend begins doing an fsync for every block written, which
1189 * gets very expensive and can slow down the whole system.
1190 *
1191 * Trying to do this every time the queue is full could lose if there
1192 * aren't any removable entries. But that should be vanishingly rare in
1193 * practice: there's one queue entry per shared buffer.
1194 */
1195 static bool
CompactCheckpointerRequestQueue(void)1196 CompactCheckpointerRequestQueue(void)
1197 {
1198 struct CheckpointerSlotMapping
1199 {
1200 CheckpointerRequest request;
1201 int slot;
1202 };
1203
1204 int n,
1205 preserve_count;
1206 int num_skipped = 0;
1207 HASHCTL ctl;
1208 HTAB *htab;
1209 bool *skip_slot;
1210
1211 /* must hold CheckpointerCommLock in exclusive mode */
1212 Assert(LWLockHeldByMe(CheckpointerCommLock));
1213
1214 /* Initialize skip_slot array */
1215 skip_slot = palloc0(sizeof(bool) * CheckpointerShmem->num_requests);
1216
1217 /* Initialize temporary hash table */
1218 MemSet(&ctl, 0, sizeof(ctl));
1219 ctl.keysize = sizeof(CheckpointerRequest);
1220 ctl.entrysize = sizeof(struct CheckpointerSlotMapping);
1221 ctl.hcxt = CurrentMemoryContext;
1222
1223 htab = hash_create("CompactCheckpointerRequestQueue",
1224 CheckpointerShmem->num_requests,
1225 &ctl,
1226 HASH_ELEM | HASH_BLOBS | HASH_CONTEXT);
1227
1228 /*
1229 * The basic idea here is that a request can be skipped if it's followed
1230 * by a later, identical request. It might seem more sensible to work
1231 * backwards from the end of the queue and check whether a request is
1232 * *preceded* by an earlier, identical request, in the hopes of doing less
1233 * copying. But that might change the semantics, if there's an
1234 * intervening FORGET_RELATION_FSYNC or FORGET_DATABASE_FSYNC request, so
1235 * we do it this way. It would be possible to be even smarter if we made
1236 * the code below understand the specific semantics of such requests (it
1237 * could blow away preceding entries that would end up being canceled
1238 * anyhow), but it's not clear that the extra complexity would buy us
1239 * anything.
1240 */
1241 for (n = 0; n < CheckpointerShmem->num_requests; n++)
1242 {
1243 CheckpointerRequest *request;
1244 struct CheckpointerSlotMapping *slotmap;
1245 bool found;
1246
1247 /*
1248 * We use the request struct directly as a hashtable key. This
1249 * assumes that any padding bytes in the structs are consistently the
1250 * same, which should be okay because we zeroed them in
1251 * CheckpointerShmemInit. Note also that RelFileNode had better
1252 * contain no pad bytes.
1253 */
1254 request = &CheckpointerShmem->requests[n];
1255 slotmap = hash_search(htab, request, HASH_ENTER, &found);
1256 if (found)
1257 {
1258 /* Duplicate, so mark the previous occurrence as skippable */
1259 skip_slot[slotmap->slot] = true;
1260 num_skipped++;
1261 }
1262 /* Remember slot containing latest occurrence of this request value */
1263 slotmap->slot = n;
1264 }
1265
1266 /* Done with the hash table. */
1267 hash_destroy(htab);
1268
1269 /* If no duplicates, we're out of luck. */
1270 if (!num_skipped)
1271 {
1272 pfree(skip_slot);
1273 return false;
1274 }
1275
1276 /* We found some duplicates; remove them. */
1277 preserve_count = 0;
1278 for (n = 0; n < CheckpointerShmem->num_requests; n++)
1279 {
1280 if (skip_slot[n])
1281 continue;
1282 CheckpointerShmem->requests[preserve_count++] = CheckpointerShmem->requests[n];
1283 }
1284 ereport(DEBUG1,
1285 (errmsg("compacted fsync request queue from %d entries to %d entries",
1286 CheckpointerShmem->num_requests, preserve_count)));
1287 CheckpointerShmem->num_requests = preserve_count;
1288
1289 /* Cleanup. */
1290 pfree(skip_slot);
1291 return true;
1292 }
1293
1294 /*
1295 * AbsorbFsyncRequests
1296 * Retrieve queued fsync requests and pass them to local smgr.
1297 *
1298 * This is exported because it must be called during CreateCheckPoint;
1299 * we have to be sure we have accepted all pending requests just before
1300 * we start fsync'ing. Since CreateCheckPoint sometimes runs in
1301 * non-checkpointer processes, do nothing if not checkpointer.
1302 */
1303 void
AbsorbFsyncRequests(void)1304 AbsorbFsyncRequests(void)
1305 {
1306 CheckpointerRequest *requests = NULL;
1307 CheckpointerRequest *request;
1308 int n;
1309
1310 if (!AmCheckpointerProcess())
1311 return;
1312
1313 LWLockAcquire(CheckpointerCommLock, LW_EXCLUSIVE);
1314
1315 /* Transfer stats counts into pending pgstats message */
1316 BgWriterStats.m_buf_written_backend += CheckpointerShmem->num_backend_writes;
1317 BgWriterStats.m_buf_fsync_backend += CheckpointerShmem->num_backend_fsync;
1318
1319 CheckpointerShmem->num_backend_writes = 0;
1320 CheckpointerShmem->num_backend_fsync = 0;
1321
1322 /*
1323 * We try to avoid holding the lock for a long time by copying the request
1324 * array, and processing the requests after releasing the lock.
1325 *
1326 * Once we have cleared the requests from shared memory, we have to PANIC
1327 * if we then fail to absorb them (eg, because our hashtable runs out of
1328 * memory). This is because the system cannot run safely if we are unable
1329 * to fsync what we have been told to fsync. Fortunately, the hashtable
1330 * is so small that the problem is quite unlikely to arise in practice.
1331 */
1332 n = CheckpointerShmem->num_requests;
1333 if (n > 0)
1334 {
1335 requests = (CheckpointerRequest *) palloc(n * sizeof(CheckpointerRequest));
1336 memcpy(requests, CheckpointerShmem->requests, n * sizeof(CheckpointerRequest));
1337 }
1338
1339 START_CRIT_SECTION();
1340
1341 CheckpointerShmem->num_requests = 0;
1342
1343 LWLockRelease(CheckpointerCommLock);
1344
1345 for (request = requests; n > 0; request++, n--)
1346 RememberFsyncRequest(request->rnode, request->forknum, request->segno);
1347
1348 END_CRIT_SECTION();
1349
1350 if (requests)
1351 pfree(requests);
1352 }
1353
1354 /*
1355 * Update any shared memory configurations based on config parameters
1356 */
1357 static void
UpdateSharedMemoryConfig(void)1358 UpdateSharedMemoryConfig(void)
1359 {
1360 /* update global shmem state for sync rep */
1361 SyncRepUpdateSyncStandbysDefined();
1362
1363 /*
1364 * If full_page_writes has been changed by SIGHUP, we update it in shared
1365 * memory and write an XLOG_FPW_CHANGE record.
1366 */
1367 UpdateFullPageWrites();
1368
1369 elog(DEBUG2, "checkpointer updated shared memory configuration values");
1370 }
1371
1372 /*
1373 * FirstCallSinceLastCheckpoint allows a process to take an action once
1374 * per checkpoint cycle by asynchronously checking for checkpoint completion.
1375 */
1376 bool
FirstCallSinceLastCheckpoint(void)1377 FirstCallSinceLastCheckpoint(void)
1378 {
1379 static int ckpt_done = 0;
1380 int new_done;
1381 bool FirstCall = false;
1382
1383 SpinLockAcquire(&CheckpointerShmem->ckpt_lck);
1384 new_done = CheckpointerShmem->ckpt_done;
1385 SpinLockRelease(&CheckpointerShmem->ckpt_lck);
1386
1387 if (new_done != ckpt_done)
1388 FirstCall = true;
1389
1390 ckpt_done = new_done;
1391
1392 return FirstCall;
1393 }
1394