From: Simon Riggs Date: Tue, 8 Feb 2011 14:38:02 +0000 (+0000) Subject: Remove rare corner case for data loss when triggering standby server. X-Git-Tag: REL9_1_ALPHA4~247 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=faa0550572583f51dba25611ab0f1d1c31de559b;p=postgresql Remove rare corner case for data loss when triggering standby server. If the standby was streaming when trigger file arrives, check also in the archive for additional WAL files. This is a corner case since it is unlikely that we would trigger a failover while the master is still available and sending data to standby, while at the same time running in archive mode and also while the streaming standby has fallen behind archive. Someone would eventually be unlucky; we must plug all gaps however small. Fujii Masao --- diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index 25c7e06234..1a3eed212f 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -9619,7 +9619,7 @@ retry: * five seconds like in the WAL file polling case below. */ if (CheckForStandbyTrigger()) - goto triggered; + goto retry; /* * Wait for more WAL to arrive, or timeout to be reached @@ -9886,6 +9886,10 @@ static bool CheckForStandbyTrigger(void) { struct stat stat_buf; + static bool triggered = false; + + if (triggered) + return true; if (TriggerFile == NULL) return false; @@ -9896,6 +9900,7 @@ CheckForStandbyTrigger(void) (errmsg("trigger file found: %s", TriggerFile))); ShutdownWalRcv(); unlink(TriggerFile); + triggered = true; return true; } return false;