]> granicus.if.org Git - postgresql/commit
In immediate shutdown, postmaster should not exit till children are gone.
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 19 Jun 2015 18:23:39 +0000 (14:23 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 19 Jun 2015 18:23:39 +0000 (14:23 -0400)
commit48913db887e6a41fa3f1b6cdf80ee89e38f21d9d
tree9961e708c2972a39ae1274d96fa2d8e2de408ed9
parentda1a9d0f5bed1f93908be9233a4fef39b988e505
In immediate shutdown, postmaster should not exit till children are gone.

This adjusts commit 82233ce7ea42d6ba519aaec63008aff49da6c7af so that the
postmaster does not exit until all its child processes have exited, even
if the 5-second timeout elapses and we have to send SIGKILL.  There is no
great value in having the postmaster process quit sooner, and doing so can
mislead onlookers into thinking that the cluster is fully terminated when
actually some child processes still survive.

This effect might explain recent test failures on buildfarm member hamster,
wherein we failed to restart a cluster just after shutting it down with
"pg_ctl stop -m immediate".

I also did a bit of code review/beautification, including fixing a faulty
use of the Max() macro on a volatile expression.

Back-patch to 9.4.  In older branches, the postmaster never waited for
children to exit during immediate shutdowns, and changing that would be
too much of a behavioral change.
doc/src/sgml/runtime.sgml
src/backend/postmaster/postmaster.c