<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Aug 24, 2017 at 4:15 AM, Tatsuo Ishii <span dir="ltr">&lt;<a href="mailto:ishii@sraoss.co.jp" target="_blank">ishii@sraoss.co.jp</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Usama,<br>
<br>
Thanks for the patch. I am going to review it.<br></blockquote><div><br></div><div>Thanks :-) </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
In the mean time when I apply your patch, I got some trailing<br>
whitespace errors. Can you please fix them?<br>
<br>
/home/t-ishii/quorum_aware_<wbr>failover.diff:470: trailing whitespace.<br>
<br>
/home/t-ishii/quorum_aware_<wbr>failover.diff:485: trailing whitespace.<br>
<br>
/home/t-ishii/quorum_aware_<wbr>failover.diff:564: trailing whitespace.<br>
<br>
/home/t-ishii/quorum_aware_<wbr>failover.diff:1428: trailing whitespace.<br>
<br>
/home/t-ishii/quorum_aware_<wbr>failover.diff:1450: trailing whitespace.<br>
<br>
warning: squelched 3 whitespace errors<br>
warning: 8 lines add whitespace errors.<br></blockquote><div><br></div><div>Yes their are these and also some more code cleanup still remaining, I wanted to share the first version</div><div>as soon as possible because I want to take the community consent about the way changed behaviour .</div><div><br></div><div>The final version will have all these issues addressed.</div><div><br></div><div>Thanks</div><div>Best Regards</div><div>Muhammad Usama</div><div><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
Best regards,<br>
--<br>
Tatsuo Ishii<br>
SRA OSS, Inc. Japan<br>
English: <a href="http://www.sraoss.co.jp/index_en.php" rel="noreferrer" target="_blank">http://www.sraoss.co.jp/index_<wbr>en.php</a><br>
Japanese:<a href="http://www.sraoss.co.jp" rel="noreferrer" target="_blank">http://www.sraoss.co.<wbr>jp</a><br>
<span class=""><br>
&gt; Hi<br>
&gt;<br>
&gt; I was working on the new feature to make the backend node failover quorum<br>
&gt; aware and on the half way through the implementation I also added the<br>
&gt; majority consensus feature for the same.<br>
&gt;<br>
&gt; So please find the first version of the patch for review that makes the<br>
&gt; backend node failover consider the watchdog cluster quorum status and seek<br>
&gt; the majority consensus before performing failover.<br>
&gt;<br>
</span>&gt; *Changes in the Failover mechanism with watchdog.*<br>
<span class="">&gt; For this new feature I have modified the Pgpool-II&#39;s existing failover<br>
&gt; mechanism with watchdog.<br>
&gt; Previously as you know when the Pgpool-II require to perform a node<br>
&gt; operation (failover, failback, promote-node) with the watchdog. The<br>
&gt; watchdog used to propagated the failover request to all the Pgpool-II nodes<br>
&gt; in the watchdog cluster and as soon as the request was received by the<br>
&gt; node, it used to initiate the local failover and that failover was<br>
&gt; synchronised on all nodes using the distributed locks.<br>
&gt;<br>
</span>&gt; *Now Only the Master node performs the failover.*<br>
<span class="">&gt; The attached patch changes the mechanism of synchronised failover, and now<br>
&gt; only the Pgpool-II of master watchdog node performs the failover, and all<br>
&gt; other standby nodes sync the backend statuses after the master Pgpool-II is<br>
&gt; finished with the failover.<br>
&gt;<br>
</span>&gt; *Overview of new failover mechanism.*<br>
<span class="">&gt; -- If the failover request is received to the standby watchdog node(from<br>
&gt; local Pgpool-II), That request is forwarded to the master watchdog and the<br>
&gt; Pgpool-II main process is returned with the FAILOVER_RES_WILL_BE_DONE<br>
&gt; return code. And upon receiving the FAILOVER_RES_WILL_BE_DONE from the<br>
&gt; watchdog for the failover request the requesting Pgpool-II moves forward<br>
&gt; without doing anything further for the particular failover command.<br>
&gt;<br>
&gt; -- Now when the failover request from standby node is received by the<br>
&gt; master watchdog, after performing the validation, applying the consensus<br>
&gt; rules the failover request is triggered on the local Pgpool-II .<br>
&gt;<br>
&gt; -- When the failover request is received to the master watchdog node from<br>
&gt; the local Pgpool-II (On the IPC channel) the watchdog process inform the<br>
&gt; Pgpool-II requesting process to proceed with failover (provided all<br>
&gt; failover rules are satisfied).<br>
&gt;<br>
&gt; -- After the failover is finished on the master Pgpool-II, the failover<br>
</span>&gt; function calls the *wd_failover_end*() which sends the backend sync<br>
<span class="">&gt; required message to all standby watchdogs.<br>
&gt;<br>
&gt; -- Upon receiving the sync required message from master watchdog node all<br>
&gt; Pgpool-II sync the new statuses of each backend node from the master<br>
&gt; watchdog.<br>
&gt;<br>
</span>&gt; *No More Failover locks*<br>
<span class="">&gt; Since with this new failover mechanism we do not require any<br>
&gt; synchronisation and guards against the execution of failover_commands by<br>
&gt; multiple Pgpool-II nodes, So the patch removes all the distributed locks<br>
&gt; from failover function, This makes the failover simpler and faster.<br>
&gt;<br>
</span>&gt; *New kind of Failover operation NODE_QUARANTINE_REQUEST*<br>
<span class="">&gt; The patch adds the new kind of backend node operation NODE_QUARANTINE which<br>
&gt; is effectively same as the NODE_DOWN, but with node_quarantine the<br>
&gt; failover_command is not triggered.<br>
&gt; The NODE_DOWN_REQUEST is automatically converted to the<br>
&gt; NODE_QUARANTINE_REQUEST when the failover is requested on the backend node<br>
&gt; but watchdog cluster does not holds the quorum.<br>
&gt; This means in the absence of quorum the failed backend nodes are<br>
&gt; quarantined and when the quorum becomes available again the Pgpool-II<br>
&gt; performs the failback operation on all quarantine nodes.<br>
&gt; And again when the failback is performed on the quarantine backend node the<br>
&gt; failover function does not trigger the failback_command.<br>
&gt;<br>
</span>&gt; *Controlling the Failover behaviour.*<br>
<span class="">&gt; The patch adds three new configuration parameters to configure the failover<br>
&gt; behaviour from user side.<br>
&gt;<br>
</span>&gt; *failover_when_quorum_exists*<br>
<span class="">&gt; When enabled the failover command will only be executed when the watchdog<br>
&gt; cluster holds the quorum. And when the quorum is absent and<br>
&gt; failover_when_quorum_exists is enabled the failed backend nodes will get<br>
&gt; quarantine until the quorum becomes available again.<br>
&gt; disabling it will enable the old behaviour of failover commands.<br>
&gt;<br>
&gt;<br>
</span>&gt; *failover_require_consensus*<wbr>This new configuration parameter can be used to<br>
<span class="">&gt; make sure we get the majority vote before performing the failover on the<br>
</span>&gt; node. When *failover_require_consensus* is enabled then the failover is<br>
<span class="">&gt; only performed after receiving the failover request from the majority or<br>
&gt; Pgpool-II nodes.<br>
&gt; For example in three nodes cluster the failover will not be performed until<br>
&gt; at least two nodes ask for performing the failover on the particular<br>
&gt; backend node.<br>
&gt;<br>
</span>&gt; It is also worthwhile to mention here that *failover_require_consensus*<br>
<span class="">&gt; only works when failover_when_quorum_exists is enables.<br>
&gt;<br>
&gt;<br>
</span>&gt; *enable_multiple_failover_<wbr>requests_from_node*<br>
&gt; This parameter works in connection with *failover_require_consensus*<br>
<span class="">&gt; config. When enabled a single Pgpool-II node can vote for failover multiple<br>
&gt; times.<br>
&gt; For example in the three nodes cluster if one Pgpool-II node sends the<br>
&gt; failover request of particular node twice that would be counted as two<br>
&gt; votes in favour of failover and the failover will be performed even if we<br>
&gt; do not get a vote from other two nodes.<br>
&gt;<br>
</span>&gt; And when *enable_multiple_failover_<wbr>requests_from_node* is disabled, Only<br>
<span class="">&gt; the first vote from each Pgpool-II will be accepted and all other<br>
&gt; subsequent votes will be marked duplicate and rejected.<br>
&gt; So in that case we will require a majority votes from distinct nodes to<br>
&gt; execute the failover.<br>
</span>&gt; Again this *enable_multiple_failover_<wbr>requests_from_node* only becomes<br>
&gt; effective when both *failover_when_quorum_exists* and<br>
&gt; *failover_require_consensus* are enabled.<br>
&gt;<br>
&gt;<br>
&gt; *Controlling the failover: The Coding perspective.*<br>
<span class="">&gt; Although the failover functions are made quorum and consensus aware but<br>
&gt; there is still a way to bypass the quorum conditions, and requirement of<br>
&gt; consensus.<br>
&gt;<br>
&gt; For this the patch uses the existing request_details flags in<br>
&gt; POOL_REQUEST_NODE to control the behaviour of failover.<br>
&gt;<br>
&gt; Here are the newly added flags values.<br>
&gt;<br>
</span>&gt; *REQ_DETAIL_WATCHDOG*:<br>
<span class="">&gt; Setting this flag while issuing the failover command will not send the<br>
&gt; failover request to the watchdog. But this flag may not be useful in any<br>
&gt; other place than where it is already used.<br>
&gt; Mostly this flag can be used to avoid the failover command from going to<br>
&gt; watchdog that is already originated from watchdog. Otherwise we can end up<br>
&gt; in infinite loop.<br>
&gt;<br>
</span>&gt; *REQ_DETAIL_CONFIRMED*:<br>
&gt; Setting this flag will bypass the *failover_require_consensus*<br>
<span class="">&gt; configuration and immediately perform the failover if quorum is present.<br>
&gt; This flag can be used to issue the failover request originated from PCP<br>
&gt; command.<br>
&gt;<br>
</span>&gt; *REQ_DETAIL_UPDATE*:<br>
<span class="">&gt; This flag is used for the command where we are failing back the quarantine<br>
&gt; nodes. Setting this flag will not trigger the failback_command.<br>
&gt;<br>
</span>&gt; *Some conditional flags used:*<br>
<span class="">&gt; I was not sure about the configuration of each type of failover operation.<br>
&gt; As we have three main failover operations NODE_UP_REQUEST,<br>
&gt; NODE_DOWN_REQUEST, and PROMOTE_NODE_REQUEST<br>
&gt; So I was thinking do we need to give the configuration option to the users,<br>
&gt; if they want to enable/disable quorum checking and consensus for individual<br>
&gt; failover operation type.<br>
&gt; For example: is it a practical configuration where a user would want to<br>
&gt; ensure quorum while preforming NODE_DOWN operation while does not want it<br>
&gt; for NODE_UP.<br>
&gt; So in this patch I use three compile time defines to enable disable the<br>
&gt; individual failover operation, while we can decide on the best solution.<br>
&gt;<br>
&gt; NODE_UP_REQUIRE_CONSENSUS: defining it will enable quorum checking feature<br>
&gt; for NODE_UP_REQUESTs<br>
&gt;<br>
&gt; NODE_DOWN_REQUIRE_CONSENSUS: defining it will enable quorum checking<br>
&gt; feature for NODE_DOWN_REQUESTs<br>
&gt;<br>
&gt; NODE_PROMOTE_REQUIRE_<wbr>CONSENSUS: defining it will enable quorum checking<br>
&gt; feature for PROMOTE_NODE_REQUESTs<br>
&gt;<br>
</span>&gt; *Some Point for Discussion:*<br>
&gt;<br>
&gt; *Do we really need to check ReqInfo-&gt;switching flag before enqueuing<br>
&gt; failover request.*<br>
<span class="">&gt; While working on the patch I was wondering why do we disallow enqueuing the<br>
&gt; failover command when the failover is already in progress? For example in<br>
</span>&gt; *pcp_process_command*() function if we see the *Req_info-&gt;switching* flag<br>
<span class="">&gt; set we bailout with the error instead of enqueuing the command. Is is<br>
&gt; really necessary?<br>
&gt;<br>
</span>&gt; *Do we need more granule control over each failover operation:*<br>
<span class="">&gt; As described in section &quot;Some conditional flags used&quot; I want the opinion on<br>
&gt; do we need configuration parameters in pgpool.conf to enable disable quorum<br>
&gt; and consensus checking on individual failover types.<br>
&gt;<br>
</span>&gt; *Which failover should be mark as Confirmed:*<br>
<span class="">&gt; As defined in the above section of REQ_DETAIL_CONFIRMED, We can mark the<br>
&gt; failover request to not need consensus, currently the requests from the PCP<br>
&gt; commands are fired with this flag. But I was wondering there may be more<br>
&gt; places where we many need to use the flag.<br>
&gt; For example I currently use the same confirmed flag when failover is<br>
</span>&gt; triggered because of *replication_stop_on_mismatch*<wbr>.<br>
<span class="">&gt;<br>
&gt; I think we should think this flag for each place of failover, like when the<br>
&gt; failover is triggered<br>
&gt; because of health_check failure.<br>
&gt; because of replication mismatch<br>
&gt; because of backend_error<br>
&gt; e.t.c<br>
&gt;<br>
</span>&gt; *Node Quarantine behaviour.*<br>
<span class="">&gt; What do you think about the node quarantine used by this patch. Can you<br>
&gt; think of some problem which can be caused by this?<br>
&gt;<br>
</span>&gt; *What should be the default values for each newly added config parameters.*<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; *TODOs*<br>
<div class="HOEnZb"><div class="h5">&gt;<br>
&gt; -- Updating the documentation is still todo. Will do that once every aspect<br>
&gt; of the feature will be finalised.<br>
&gt; -- Some code warnings and cleanups are still not done.<br>
&gt; -- I am still little short on testing<br>
&gt; -- Regression test cases for the feature<br>
&gt;<br>
&gt;<br>
&gt; Thoughts and suggestions are most welcome.<br>
&gt;<br>
&gt; Thanks<br>
&gt; Best regards<br>
&gt; Muhammad Usama<br>
</div></div></blockquote></div><br></div></div>