Speed up failover when all of backends are down.
authorTatsuo Ishii <ishii@sraoss.co.jp>
Fri, 3 May 2019 00:02:29 +0000 (09:02 +0900)
committerTatsuo Ishii <ishii@sraoss.co.jp>
Fri, 3 May 2019 00:02:29 +0000 (09:02 +0900)
commitff3c54eb884b8fbb063a4501ed548112d76cc205
tree1b7cdb793a6be3b6ccdd90a8c3629d4258958ebc
parent23fb4c1250f0464a867f2ac69006d74f134213e3
Speed up failover when all of backends are down.

Pgpool-II tries to find primary node till search_primary_node_timeout
expires even if all of the backend are in down status. This is not
only a waste of time but makes Pgpool-II looked like hanged because
while searching primary node failover process is suspended and all of
the Pgpool-II child process are in defunct state, thus there's no
process which accepts connection requests from clients. Since the
default value of searching primary is 300 seconds, typically this
keeps on for 300 seconds. This is not comfortable for users.

So immediately give up finding primary node regardless
search_primary_node_timeout and promptly finish the failover process
if all of the backend are in down status.

Discussion: https://www.pgpool.net/pipermail/pgpool-hackers/2019-May/003321.html
src/main/pgpool_main.c