[pgpool-committers: 1593] pgpool: Fix primary node detection logic.
Tatsuo Ishii
ishii at postgresql.org
Wed Jan 15 08:30:06 JST 2014
Fix primary node detection logic.
There's a possibility that primary node is not detected. This happens
in following situation. node 0: primary, node 1: standby. Node 0 goes
down. Health checking detects the fact but local status is not updated
yet. Primary node finding (find_primary_node) runs. Node 0's status is
yet healthy. Because find_primary_node fails to connect to node 0, it
immediately returns -1 and fails to find that fact that node 1 is now
primary.
Fix is just continuing to look for primary node when fails to connect
to a node.
Per [pgpool-general: 2409].
Branch
------
V3_3_STABLE
Details
-------
http://git.postgresql.org/gitweb?p=pgpool2.git;a=commitdiff;h=13d8da7f97a31e29e38972fceaf5b173a7ac430d
Modified Files
--------------
main.c | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
More information about the pgpool-committers
mailing list