]> granicus.if.org Git - postgresql/commit
Fix postmaster to attempt restart after a hot-standby crash.
authorTom Lane <tgl@sss.pgh.pa.us>
Mon, 6 Feb 2012 20:29:26 +0000 (15:29 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Mon, 6 Feb 2012 20:29:52 +0000 (15:29 -0500)
commitcc0f6fff1a0dd44d5481836154ac3639be0c056f
treebda1c8bfa3d372d51018ca2a9cbae985bcb7e440
parent07e36415e5205b67dca37e56857bd3e68b1553f7
Fix postmaster to attempt restart after a hot-standby crash.

The postmaster was coded to treat any unexpected exit of the startup
process (i.e., the WAL replay process) as a catastrophic crash, and not try
to restart it. This was OK so long as the startup process could not have
any sibling postmaster children.  However, if a hot-standby backend
crashes, we SIGQUIT the startup process along with everything else, and the
resulting exit is hardly "unexpected".  Treating it as such meant we failed
to restart a standby server after any child crash at all, not only a crash
of the WAL replay process as intended.  Adjust that.  Back-patch to 9.0
where hot standby was introduced.
src/backend/postmaster/postmaster.c