mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-19 21:07:07 +08:00
When the checkpointer writes the shutdown checkpoint, it checks afterwards whether any WAL has been written since it started and throws a PANIC if so. At that point, only walsenders are still active, so one might think this could not happen, but walsenders can also generate WAL, for instance in BASE_BACKUP and logical decoding related commands (e.g. via hint bits). So they can trigger this panic if such a command is run while the shutdown checkpoint is being written. To fix this, divide the walsender shutdown into two phases. First, checkpointer, itself triggered by postmaster, sends a PROCSIG_WALSND_INIT_STOPPING signal to all walsenders. If the backend is idle or runs an SQL query this causes the backend to shutdown, if logical replication is in progress all existing WAL records are processed followed by a shutdown. Otherwise this causes the walsender to switch to the "stopping" state. In this state, the walsender will reject any further replication commands. The checkpointer begins the shutdown checkpoint once all walsenders are confirmed as stopping. When the shutdown checkpoint finishes, the postmaster sends us SIGUSR2. This instructs walsender to send any outstanding WAL, including the shutdown checkpoint record, wait for it to be replicated to the standby, and then exit. Author: Andres Freund, based on an earlier patch by Michael Paquier Reported-By: Fujii Masao, Andres Freund Reviewed-By: Michael Paquier Discussion: https://postgr.es/m/20170602002912.tqlwn4gymzlxpvs2@alap3.anarazel.de Backpatch: 9.4, where logical decoding was introduced
68 lines
1.7 KiB
C
68 lines
1.7 KiB
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* walsender.h
|
|
* Exports from replication/walsender.c.
|
|
*
|
|
* Portions Copyright (c) 2010-2015, PostgreSQL Global Development Group
|
|
*
|
|
* src/include/replication/walsender.h
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef _WALSENDER_H
|
|
#define _WALSENDER_H
|
|
|
|
#include <signal.h>
|
|
|
|
#include "fmgr.h"
|
|
|
|
/* global state */
|
|
extern bool am_walsender;
|
|
extern bool am_cascading_walsender;
|
|
extern bool am_db_walsender;
|
|
extern bool wake_wal_senders;
|
|
|
|
/* user-settable parameters */
|
|
extern int max_wal_senders;
|
|
extern int wal_sender_timeout;
|
|
extern bool log_replication_commands;
|
|
|
|
extern void InitWalSender(void);
|
|
extern void exec_replication_command(const char *query_string);
|
|
extern void WalSndErrorCleanup(void);
|
|
extern void WalSndSignals(void);
|
|
extern Size WalSndShmemSize(void);
|
|
extern void WalSndShmemInit(void);
|
|
extern void WalSndWakeup(void);
|
|
extern void WalSndInitStopping(void);
|
|
extern void WalSndWaitStopping(void);
|
|
extern void HandleWalSndInitStopping(void);
|
|
extern void WalSndRqstFileReload(void);
|
|
|
|
extern Datum pg_stat_get_wal_senders(PG_FUNCTION_ARGS);
|
|
|
|
/*
|
|
* Remember that we want to wakeup walsenders later
|
|
*
|
|
* This is separated from doing the actual wakeup because the writeout is done
|
|
* while holding contended locks.
|
|
*/
|
|
#define WalSndWakeupRequest() \
|
|
do { wake_wal_senders = true; } while (0)
|
|
|
|
/*
|
|
* wakeup walsenders if there is work to be done
|
|
*/
|
|
#define WalSndWakeupProcessRequests() \
|
|
do \
|
|
{ \
|
|
if (wake_wal_senders) \
|
|
{ \
|
|
wake_wal_senders = false; \
|
|
if (max_wal_senders > 0) \
|
|
WalSndWakeup(); \
|
|
} \
|
|
} while (0)
|
|
|
|
#endif /* _WALSENDER_H */
|