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:16:34 +0000 (09:16 +0900)
commitafbcff28985ef2965d8466c69da4a54b5381c17d
treec3e53fb772aa19f24077b33068ebd9ba65e41b79
parent87e531eada8613c4068653877c335e63a85140e7
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