1 /*-------------------------------------------------------------------------
5 * The WAL writer background process is new as of Postgres 8.3. It attempts
6 * to keep regular backends from having to write out (and fsync) WAL pages.
7 * Also, it guarantees that transaction commit records that weren't synced
8 * to disk immediately upon commit (ie, were "asynchronously committed")
9 * will reach disk within a knowable time --- which, as it happens, is at
10 * most three times the wal_writer_delay cycle time.
12 * Note that as with the bgwriter for shared buffers, regular backends are
13 * still empowered to issue WAL writes and fsyncs when the walwriter doesn't
16 * Because the walwriter's cycle is directly linked to the maximum delay
17 * before async-commit transactions are guaranteed committed, it's probably
18 * unwise to load additional functionality onto it. For instance, if you've
19 * got a yen to create xlog segments further in advance, that'd be better done
20 * in bgwriter than in walwriter.
22 * The walwriter is started by the postmaster as soon as the startup subprocess
23 * finishes. It remains alive until the postmaster commands it to terminate.
24 * Normal termination is by SIGTERM, which instructs the walwriter to exit(0).
25 * Emergency termination is by SIGQUIT; like any backend, the walwriter will
26 * simply abort and exit on SIGQUIT.
28 * If the walwriter exits unexpectedly, the postmaster treats that the same
29 * as a backend crash: shared memory may be corrupted, so remaining backends
30 * should be killed by SIGQUIT and then a recovery cycle started.
33 * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
39 *-------------------------------------------------------------------------
48 #include "access/xlog.h"
49 #include "libpq/pqsignal.h"
50 #include "miscadmin.h"
51 #include "postmaster/walwriter.h"
52 #include "storage/bufmgr.h"
53 #include "storage/fd.h"
54 #include "storage/ipc.h"
55 #include "storage/lwlock.h"
56 #include "storage/pmsignal.h"
57 #include "storage/smgr.h"
58 #include "utils/guc.h"
59 #include "utils/hsearch.h"
60 #include "utils/memutils.h"
61 #include "utils/resowner.h"
67 int WalWriterDelay
= 200;
70 * Flags set by interrupt handlers for later service in the main loop.
72 static volatile sig_atomic_t got_SIGHUP
= false;
73 static volatile sig_atomic_t shutdown_requested
= false;
76 static void wal_quickdie(SIGNAL_ARGS
);
77 static void WalSigHupHandler(SIGNAL_ARGS
);
78 static void WalShutdownHandler(SIGNAL_ARGS
);
82 * Main entry point for walwriter process
84 * This is invoked from BootstrapMain, which has already created the basic
85 * execution environment, but not enabled signals yet.
90 sigjmp_buf local_sigjmp_buf
;
91 MemoryContext walwriter_context
;
94 * If possible, make this process a group leader, so that the postmaster
95 * can signal any child processes too. (walwriter probably never has any
96 * child processes, but for consistency we make all postmaster child
101 elog(FATAL
, "setsid() failed: %m");
105 * Properly accept or ignore signals the postmaster might send us
107 * We have no particular use for SIGINT at the moment, but seems
108 * reasonable to treat like SIGTERM.
110 pqsignal(SIGHUP
, WalSigHupHandler
); /* set flag to read config file */
111 pqsignal(SIGINT
, WalShutdownHandler
); /* request shutdown */
112 pqsignal(SIGTERM
, WalShutdownHandler
); /* request shutdown */
113 pqsignal(SIGQUIT
, wal_quickdie
); /* hard crash time */
114 pqsignal(SIGALRM
, SIG_IGN
);
115 pqsignal(SIGPIPE
, SIG_IGN
);
116 pqsignal(SIGUSR1
, SIG_IGN
); /* reserve for sinval */
117 pqsignal(SIGUSR2
, SIG_IGN
); /* not used */
120 * Reset some signals that are accepted by postmaster but not here
122 pqsignal(SIGCHLD
, SIG_DFL
);
123 pqsignal(SIGTTIN
, SIG_DFL
);
124 pqsignal(SIGTTOU
, SIG_DFL
);
125 pqsignal(SIGCONT
, SIG_DFL
);
126 pqsignal(SIGWINCH
, SIG_DFL
);
128 /* We allow SIGQUIT (quickdie) at all times */
129 #ifdef HAVE_SIGPROCMASK
130 sigdelset(&BlockSig
, SIGQUIT
);
132 BlockSig
&= ~(sigmask(SIGQUIT
));
136 * Create a resource owner to keep track of our resources (not clear that
137 * we need this, but may as well have one).
139 CurrentResourceOwner
= ResourceOwnerCreate(NULL
, "Wal Writer");
142 * Create a memory context that we will do all our work in. We do this so
143 * that we can reset the context during error recovery and thereby avoid
144 * possible memory leaks. Formerly this code just ran in
145 * TopMemoryContext, but resetting that would be a really bad idea.
147 walwriter_context
= AllocSetContextCreate(TopMemoryContext
,
149 ALLOCSET_DEFAULT_MINSIZE
,
150 ALLOCSET_DEFAULT_INITSIZE
,
151 ALLOCSET_DEFAULT_MAXSIZE
);
152 MemoryContextSwitchTo(walwriter_context
);
155 * If an exception is encountered, processing resumes here.
157 * This code is heavily based on bgwriter.c, q.v.
159 if (sigsetjmp(local_sigjmp_buf
, 1) != 0)
161 /* Since not using PG_TRY, must reset error stack by hand */
162 error_context_stack
= NULL
;
164 /* Prevent interrupts while cleaning up */
167 /* Report the error to the server log */
171 * These operations are really just a minimal subset of
172 * AbortTransaction(). We don't have very many resources to worry
173 * about in walwriter, but we do have LWLocks, and perhaps buffers?
178 /* buffer pins are released here: */
179 ResourceOwnerRelease(CurrentResourceOwner
,
180 RESOURCE_RELEASE_BEFORE_LOCKS
,
182 /* we needn't bother with the other ResourceOwnerRelease phases */
183 AtEOXact_Buffers(false);
185 AtEOXact_HashTables(false);
188 * Now return to normal top-level context and clear ErrorContext for
191 MemoryContextSwitchTo(walwriter_context
);
194 /* Flush any leaked data in the top-level context */
195 MemoryContextResetAndDeleteChildren(walwriter_context
);
197 /* Now we can allow interrupts again */
201 * Sleep at least 1 second after any error. A write error is likely
202 * to be repeated, and we don't want to be filling the error logs as
208 * Close all open files after any error. This is helpful on Windows,
209 * where holding deleted files open causes various strange errors.
210 * It's not clear we need it elsewhere, but shouldn't hurt.
215 /* We can now handle ereport(ERROR) */
216 PG_exception_stack
= &local_sigjmp_buf
;
219 * Unblock signals (they were blocked when the postmaster forked us)
221 PG_SETMASK(&UnBlockSig
);
231 * Emergency bailout if postmaster has died. This is to avoid the
232 * necessity for manual cleanup of all postmaster children.
234 if (!PostmasterIsAlive(true))
238 * Process any requests or signals received recently.
243 ProcessConfigFile(PGC_SIGHUP
);
245 if (shutdown_requested
)
247 /* Normal exit from the walwriter is here */
248 proc_exit(0); /* done */
252 * Do what we're here for...
254 XLogBackgroundFlush();
257 * Delay until time to do something more, but fall out of delay
258 * reasonably quickly if signaled.
260 udelay
= WalWriterDelay
* 1000L;
261 while (udelay
> 999999L)
263 if (got_SIGHUP
|| shutdown_requested
)
268 if (!(got_SIGHUP
|| shutdown_requested
))
274 /* --------------------------------
275 * signal handler routines
276 * --------------------------------
280 * wal_quickdie() occurs when signalled SIGQUIT by the postmaster.
282 * Some backend has bought the farm,
283 * so we need to stop what we're doing and exit.
286 wal_quickdie(SIGNAL_ARGS
)
288 PG_SETMASK(&BlockSig
);
291 * DO NOT proc_exit() -- we're here because shared memory may be
292 * corrupted, so we don't want to try to clean up our transaction. Just
293 * nail the windows shut and get out of town.
295 * Note we do exit(2) not exit(0). This is to force the postmaster into a
296 * system reset cycle if some idiot DBA sends a manual SIGQUIT to a random
297 * backend. This is necessary precisely because we don't clean up our
298 * shared memory state.
303 /* SIGHUP: set flag to re-read config file at next convenient time */
305 WalSigHupHandler(SIGNAL_ARGS
)
310 /* SIGTERM: set flag to exit normally */
312 WalShutdownHandler(SIGNAL_ARGS
)
314 shutdown_requested
= true;