Remove files signaling a standby promotion request at postmaster startup
authorFujii Masao
Wed, 9 Sep 2015 13:51:44 +0000 (22:51 +0900)
committerFujii Masao
Wed, 9 Sep 2015 13:52:40 +0000 (22:52 +0900)
This commit makes postmaster forcibly remove the files signaling
a standby promotion request. Otherwise, the existence of those files
can trigger a promotion too early, whether a user wants that or not.

This removal of files is usually unnecessary because they can exist
only during a few moments during a standby promotion. However
there is a race condition: if pg_ctl promote is executed and creates
the files during a promotion, the files can stay around even after
the server is brought up to new master. Then, if new standby starts
by using the backup taken from that master, the files can exist
at the server startup and should be removed in order to avoid
an unexpected promotion.

Back-patch to 9.1 where promote signal file was introduced.

Problem reported by Feike Steenbergen.
Original patch by Michael Paquier, modified by me.

Discussion: 20150528100705[email protected]

src/backend/access/transam/xlog.c
src/backend/postmaster/postmaster.c
src/include/access/xlog.h

index 9d160daa6cea80a1a8b4e71ac1a1fc00fb07658f..dadaa94bc8272476d9ed40e98ffa5a1c8482ed89 100644 (file)
@@ -10152,6 +10152,16 @@ CheckForStandbyTrigger(void)
    return false;
 }
 
+/*
+ * Remove the files signaling a standby promotion request.
+ */
+void
+RemovePromoteSignalFiles(void)
+{
+   unlink(PROMOTE_SIGNAL_FILE);
+   unlink(FALLBACK_PROMOTE_SIGNAL_FILE);
+}
+
 /*
  * Check to see if a promote request has arrived. Should be
  * called by postmaster after receiving SIGUSR1.
index 864572ebaedd11628faf84fc7d8be5c16486bf2e..f0bba9e104a6ea5cd12139a0cbd72c42754872d9 100644 (file)
@@ -1198,6 +1198,27 @@ PostmasterMain(int argc, char *argv[])
     */
    RemovePgTempFiles();
 
+   /*
+    * Forcibly remove the files signaling a standby promotion
+    * request. Otherwise, the existence of those files triggers
+    * a promotion too early, whether a user wants that or not.
+    *
+    * This removal of files is usually unnecessary because they
+    * can exist only during a few moments during a standby
+    * promotion. However there is a race condition: if pg_ctl promote
+    * is executed and creates the files during a promotion,
+    * the files can stay around even after the server is brought up
+    * to new master. Then, if new standby starts by using the backup
+    * taken from that master, the files can exist at the server
+    * startup and should be removed in order to avoid an unexpected
+    * promotion.
+    *
+    * Note that promotion signal files need to be removed before
+    * the startup process is invoked. Because, after that, they can
+    * be used by postmaster's SIGUSR1 signal handler.
+    */
+   RemovePromoteSignalFiles();
+
    /*
     * If enabled, start up syslogger collection subprocess
     */
index 7e0b0c24bc617df2d17624bb80148d43de6c2610..0130ef948257a3ad1e1f2ede99ea01a4b03b5981 100644 (file)
@@ -316,6 +316,7 @@ extern XLogRecPtr GetRedoRecPtr(void);
 extern XLogRecPtr GetInsertRecPtr(void);
 extern XLogRecPtr GetFlushRecPtr(void);
 extern void GetNextXidAndEpoch(TransactionId *xid, uint32 *epoch);
+extern void RemovePromoteSignalFiles(void);
 
 extern bool CheckPromoteSignal(void);
 extern void WakeupRecovery(void);