<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Oct 15, 2015 at 2:23 AM, Tatsuo Ishii <span dir="ltr">&lt;<a href="mailto:ishii@postgresql.org" target="_blank">ishii@postgresql.org</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>
Can you please propose a patch to implement similar thing with 3.4?  I<br>
think it will make 3.4 more robust. I have no idea how to implement<br>
it with 3.4&#39;s exception mechanism.<br></blockquote><div><br></div><div>sure I will work on this</div><div><br></div><div>Thanks</div><div>best regards</div><div>Muhammad Usama </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="HOEnZb"><div class="h5"><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_en.php</a><br>
Japanese:<a href="http://www.sraoss.co.jp" rel="noreferrer" target="_blank">http://www.sraoss.co.jp</a><br>
<br>
&gt; Hi Ishii San<br>
&gt;<br>
&gt; I think this difference of behavior between 3.3. And 3.4 is caused by the<br>
&gt; commit &quot;cb735f22441001b6afdbb5bac72808db66094ca9&quot; that was not ported to<br>
&gt; the 3.4 branch.<br>
&gt;<br>
&gt; <a href="http://git.postgresql.org/gitweb/?p=pgpool2.git;a=commit;h=cb735f22441001b6afdbb5bac72808db66094ca9" rel="noreferrer" target="_blank">http://git.postgresql.org/gitweb/?p=pgpool2.git;a=commit;h=cb735f22441001b6afdbb5bac72808db66094ca9</a><br>
&gt;<br>
&gt; Thanks<br>
&gt; Best regards<br>
&gt; Muhammad Usama<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; On Tue, Oct 13, 2015 at 2:45 PM, Tatsuo Ishii &lt;<a href="mailto:ishii@postgresql.org">ishii@postgresql.org</a>&gt; wrote:<br>
&gt;<br>
&gt;&gt; &gt; Usama,<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; While I have been working on:<br>
&gt;&gt; &gt; <a href="http://www.pgpool.net/mantisbt/view.php?id=147" rel="noreferrer" target="_blank">http://www.pgpool.net/mantisbt/view.php?id=147</a><br>
&gt;&gt;<br>
&gt;&gt; Oops. This is wrong. Here is the correct one.<br>
&gt;&gt;<br>
&gt;&gt; <a href="http://www.pgpool.net/mantisbt/view.php?id=145" rel="noreferrer" target="_blank">http://www.pgpool.net/mantisbt/view.php?id=145</a><br>
&gt;&gt;<br>
&gt;&gt; &gt; I found there was an interesting behavior change between pgpool-II 3.3<br>
&gt;&gt; &gt; and 3.4.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; It turns out that the bug was related to the action when<br>
&gt;&gt; &gt; client_idle_limit is reached. In 3.3, when client_idle_limit is<br>
&gt;&gt; &gt; reached, following statement is executed (pool_process_query.c):<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; if (idle_count &gt; pool_config-&gt;client_idle_limit)<br>
&gt;&gt; &gt; {<br>
&gt;&gt; &gt;       pool_log(&quot;pool_process_query: child connection forced to terminate<br>
&gt;&gt; due to client_idle_limit (%d) reached,<br>
&gt;&gt; &gt;                pool_config-&gt;client_idle_limit);<br>
&gt;&gt; &gt;               pool_send_error_message(frontend, MAJOR(backend),<br>
&gt;&gt; &gt;               &quot;57000&quot;, &quot;connection terminated due to client idle limit<br>
&gt;&gt; reached&quot;,<br>
&gt;&gt; &gt;                                       &quot;&quot;,&quot;&quot;,  __FILE__, __LINE__);<br>
&gt;&gt; &gt;       return POOL_END_WITH_FRONTEND_ERROR;<br>
&gt;&gt; &gt; }<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; then goes to this (child.c)<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; if (status == POOL_END_WITH_FRONTEND_ERROR ||<br>
&gt;&gt; &gt;    pool_config-&gt;connection_cache == 0 ||<br>
&gt;&gt; &gt;    !strcmp(sp-&gt;database, &quot;template0&quot;) ||<br>
&gt;&gt; &gt;    !strcmp(sp-&gt;database, &quot;template1&quot;) ||<br>
&gt;&gt; &gt;    !strcmp(sp-&gt;database, &quot;postgres&quot;) ||<br>
&gt;&gt; &gt;    !strcmp(sp-&gt;database, &quot;regression&quot;))<br>
&gt;&gt; &gt; {<br>
&gt;&gt; &gt;       reset_connection();<br>
&gt;&gt; &gt;       pool_close(frontend);<br>
&gt;&gt; &gt;       pool_send_frontend_exits(backend);<br>
&gt;&gt; &gt;       pool_discard_cp(sp-&gt;user, sp-&gt;database, sp-&gt;major);<br>
&gt;&gt; &gt; }<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; This results in closing connection to backend.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; In 3.4,<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; if (idle_count &gt; pool_config-&gt;client_idle_limit)<br>
&gt;&gt; &gt; {<br>
&gt;&gt; &gt;       ereport(ERROR,<br>
&gt;&gt; &gt;            (pool_error_code(&quot;57000&quot;),<br>
&gt;&gt; &gt;                errmsg(&quot;unable to read data&quot;),<br>
&gt;&gt; &gt;                  errdetail(&quot;child connection forced to terminate due to<br>
&gt;&gt; client_idle_limit:%d is reached&quot;,<br>
&gt;&gt; &gt;                   pool_config-&gt;client_idle_limit)));<br>
&gt;&gt; &gt; }<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Then jump to backend_cleanup() and call pool_process_query() to<br>
&gt;&gt; &gt; execute queries defined in reset_query_list. This results in sending<br>
&gt;&gt; &gt; typically &quot;DISCARD ALL&quot; to backend. The problem reported in the bug id<br>
&gt;&gt; &gt; 147 happens in this route (actually the reporter claims that pgpool-II<br>
&gt;&gt; &gt; hangs in sending &quot;DISCARD&quot;).<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; In summary, when client idle limit reaches, pgpool-II 3.3 disconnects<br>
&gt;&gt; &gt; connections to backend, while 3.4 does not close the connections to<br>
&gt;&gt; &gt; backend and sends DISCARD to backend.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; We have a few reports that pgpool-II 3.4 hangs while sending DISCARD<br>
&gt;&gt; &gt; and I wonder those problems somewhat related to the behavior change<br>
&gt;&gt; &gt; described above because the code path in 3.4 is executed even if<br>
&gt;&gt; &gt; client_idle_limit is not reached (elog(ERROR...)).<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Usama,<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Was this behavior change intentional?<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Best regards,<br>
&gt;&gt; &gt; --<br>
&gt;&gt; &gt; Tatsuo Ishii<br>
&gt;&gt; &gt; SRA OSS, Inc. Japan<br>
&gt;&gt; &gt; English: <a href="http://www.sraoss.co.jp/index_en.php" rel="noreferrer" target="_blank">http://www.sraoss.co.jp/index_en.php</a><br>
&gt;&gt; &gt; Japanese:<a href="http://www.sraoss.co.jp" rel="noreferrer" target="_blank">http://www.sraoss.co.jp</a><br>
&gt;&gt; &gt; _______________________________________________<br>
&gt;&gt; &gt; pgpool-hackers mailing list<br>
&gt;&gt; &gt; <a href="mailto:pgpool-hackers@pgpool.net">pgpool-hackers@pgpool.net</a><br>
&gt;&gt; &gt; <a href="http://www.pgpool.net/mailman/listinfo/pgpool-hackers" rel="noreferrer" target="_blank">http://www.pgpool.net/mailman/listinfo/pgpool-hackers</a><br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; pgpool-hackers mailing list<br>
&gt;&gt; <a href="mailto:pgpool-hackers@pgpool.net">pgpool-hackers@pgpool.net</a><br>
&gt;&gt; <a href="http://www.pgpool.net/mailman/listinfo/pgpool-hackers" rel="noreferrer" target="_blank">http://www.pgpool.net/mailman/listinfo/pgpool-hackers</a><br>
&gt;&gt;<br>
</div></div></blockquote></div><br></div></div>