mirror of
https://github.com/postgres/postgres.git
synced 2025-05-02 11:44:50 +03:00
Have walsenders participate in procsignal infrastructure.
The non-participation in procsignal was a problem for both changes in master, e.g. parallelism not working for normal statements run in walsender backends, and older branches, e.g. recovery conflicts and catchup interrupts not working for logical decoding walsenders. This commit thus replaces the previous WalSndXLogSendHandler with procsignal_sigusr1_handler. In branches since db0f6cad48 that can lead to additional SetLatch calls, but that only rarely seems to make a difference. Author: Andres Freund Reviewed-By: Michael Paquier Discussion: https://postgr.es/m/20170421014030.fdzvvvbrz4nckrow@alap3.anarazel.de Backpatch: 9.4, earlier commits don't seem to benefit sufficiently
This commit is contained in:
parent
703f148e98
commit
47fd420fb4
@ -212,7 +212,6 @@ static struct
|
|||||||
|
|
||||||
/* Signal handlers */
|
/* Signal handlers */
|
||||||
static void WalSndSigHupHandler(SIGNAL_ARGS);
|
static void WalSndSigHupHandler(SIGNAL_ARGS);
|
||||||
static void WalSndXLogSendHandler(SIGNAL_ARGS);
|
|
||||||
static void WalSndLastCycleHandler(SIGNAL_ARGS);
|
static void WalSndLastCycleHandler(SIGNAL_ARGS);
|
||||||
|
|
||||||
/* Prototypes for private functions */
|
/* Prototypes for private functions */
|
||||||
@ -2857,17 +2856,6 @@ WalSndSigHupHandler(SIGNAL_ARGS)
|
|||||||
errno = save_errno;
|
errno = save_errno;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* SIGUSR1: set flag to send WAL records */
|
|
||||||
static void
|
|
||||||
WalSndXLogSendHandler(SIGNAL_ARGS)
|
|
||||||
{
|
|
||||||
int save_errno = errno;
|
|
||||||
|
|
||||||
latch_sigusr1_handler();
|
|
||||||
|
|
||||||
errno = save_errno;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* SIGUSR2: set flag to do a last cycle and shut down afterwards */
|
/* SIGUSR2: set flag to do a last cycle and shut down afterwards */
|
||||||
static void
|
static void
|
||||||
WalSndLastCycleHandler(SIGNAL_ARGS)
|
WalSndLastCycleHandler(SIGNAL_ARGS)
|
||||||
@ -2901,7 +2889,7 @@ WalSndSignals(void)
|
|||||||
pqsignal(SIGQUIT, quickdie); /* hard crash time */
|
pqsignal(SIGQUIT, quickdie); /* hard crash time */
|
||||||
InitializeTimeouts(); /* establishes SIGALRM handler */
|
InitializeTimeouts(); /* establishes SIGALRM handler */
|
||||||
pqsignal(SIGPIPE, SIG_IGN);
|
pqsignal(SIGPIPE, SIG_IGN);
|
||||||
pqsignal(SIGUSR1, WalSndXLogSendHandler); /* request WAL sending */
|
pqsignal(SIGUSR1, procsignal_sigusr1_handler);
|
||||||
pqsignal(SIGUSR2, WalSndLastCycleHandler); /* request a last cycle and
|
pqsignal(SIGUSR2, WalSndLastCycleHandler); /* request a last cycle and
|
||||||
* shutdown */
|
* shutdown */
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user