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:28 +0000 (22:52 +0900)
commit65f37b3e9b0aea59cc98a2e23f45bb8fb6a56395
treee48584158042c459a7a3fcab2866d2d733e9552e
parent9801bae217e9d3f72e2d1f3dd780bf0bf9365dae
Remove files signaling a standby promotion request at postmaster startup

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