<div class="gmail_quote">I agree that graceful shutdown is very application-specific. However, cowboy doesn't currently facilitate any sort of graceful shutdown unless you read the source code and poke directly at the appropriate supervisors like I did. The application specific stuff is easily done on your own with a process registry or a timeout, we used a combination of gproc and a timeout if things didn't shut down in an acceptable time frame.</div>
<div class="gmail_quote"><br></div><div class="gmail_quote">I would suggest something like cowboy:stop_listener/1, maybe something like cowboy:stop_listening/1 or cowboy:stop_accepting/1.</div><div class="gmail_quote"><br>
</div><div class="gmail_quote">On Sun, May 13, 2012 at 11:02 PM, Loïc Hoguin <span dir="ltr"><<a href="mailto:essen@ninenines.eu" target="_blank">essen@ninenines.eu</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Right, this is pretty much what I said to Paul in PM. It was in R14B03 that the behavior changed. I apparently have a @todo wrong past that release, and will take a look if I find other things to fix in the docs.<br>
<br>
Copy pasting my private reply on this:<br>
<br>
Ultimately if we remove the listener I think we want to stop everything.<br>
<br>
For "server is overloaded" situations, you can very well use the 'onrequest' hook which can be set or changed dynamically through cowboy:set_protocol_options, in addition to giving it in start_listener. Takes a fun that has a single arg as a Req, returns a Req, and if you replied from within it it doesn't dispatch the request and stops there (you can also force close the connection by setting the Connection header to "close").<br>

<br>
And adding this:<br>
<br>
For graceful shutdowns, well it's highly application dependent. Some apps are just short lived connections, so not accepting requests plus a short delay ought to do it. Some are long lived, which probably requires to send a shutdown message. Some apps may have connections critical enough that you don't want to shutdown them. It's up to the application implementor to devise the strategy to use for stopping.<div class="HOEnZb">
<div class="h5"><br>
<br>
On 05/14/2012 02:34 AM, Fred Hebert wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
This is just a guess, but is it possible that this is due to the fact<br>
Cowboy is using simple_one_for_one supervision? In Pre R15, if I recall<br>
correctly, the shutdown of sofo supervisors was asynchronous. The<br>
supervisor would just die and let its children figure out it was gone.<br>
<br>
Starting with R15, things started being synchronous and the supervisor<br>
would wait. A brutal kill that made things work fine before R15<br>
(excluding the issue of the application master killing everything) could<br>
start breaking in later versions.<br>
<br>
Again, this is just a guess, without looking at the source or anything.<br>
<br>
On Sun May 13 14:12:18 2012, Bob Ippolito wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Yes, it is documented that request processes continue after you stop<br>
the listener. This is incorrect.<br>
<br>
On Sunday, May 13, 2012, Anthony Ramine wrote:<br>
<br>
Paweł, from what I gather your supervisor waits 1 ms before<br>
killing its children; I think it's pretty normal that some<br>
messages are left unprocessed.<br>
Bob, cowboy_requests_sup' shutdown strategy is brutal_kill, is it<br>
documented somewhere that Cowboy waits before killing requests'<br>
processes?<br>
<br>
Regards,<br>
<br>
--<br>
Anthony Ramine<br>
<br>
<br>
<br>
<br>
Le 10 mai 2012 à 22:37, Bob Ippolito a écrit :<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
I had the same problem with Cowboy recently, really ought to file<br>
an issue to at least fix the docs for that.<br>
<br>
For my app I wanted to implement a graceful shutdown that stopped<br>
accepting new connections but allowed existing requests to<br>
finish. The waiting part I implemented by adding a gproc local<br>
property to the workers that I wanted to wait for and then<br>
monitoring them.<br>
<br>
Looks like this:<br>
<a href="https://gist.github.com/2655724" target="_blank">https://gist.github.com/<u></u>2655724</a><br>
<br>
On Thu, May 10, 2012 at 2:53 AM, Paweł Peregud<br>
<<a href="mailto:paulperegud@gmail.com" target="_blank">paulperegud@gmail.com</a> <javascript:_e({}, 'cvml',<br>
'<a href="mailto:paulperegud@gmail.com" target="_blank">paulperegud@gmail.com</a>');>> wrote:<br>
<br>
I was having fun with supervisors yesterday (Cowboy seems to<br>
fail to fulfill the promise of not killing request processes<br>
after listener removal) and I have an example. I've only<br>
investigated the case when supervisor is killed, so YMMV.<br>
Example code is attached. You may modify it to check the<br>
behavior in your case.<br>
<br>
Start supervisor tree with exp_sup_sup:start_link(). Execute<br>
test with exp_sup_sup:test() and exp_sup_sup:test_simple().<br>
<br>
In case of dying supervisor the answer is "no, it does not".<br>
<br>
When supervisor dies, your process is killed as via link<br>
mechanism, so it may leave some unprocessed messages in<br>
inbox. To make sure that every delivered message is served,<br>
you need to add process_flag(trap_exit, true). Messages that<br>
are sent after the moment when supervisor dies are not processed.<br>
<br>
Best regards,<br>
<br>
Paul.<br>
<br>
<br>
On May 9, 2012 11:06 AM, "Andy Richards"<br>
<<a href="mailto:andy.richards.iit@googlemail.com" target="_blank">andy.richards.iit@googlemail.<u></u>com</a> <javascript:_e({}, 'cvml',<br>
'<a href="mailto:andy.richards.iit@googlemail.com" target="_blank">andy.richards.iit@googlemail.<u></u>com</a>');>> wrote:<br>
<br>
Hi,<br>
<br>
I can't seem to see any confirmation in the documentation<br>
so was wondering if anyone could confirm if messages are<br>
still sent to a supervised gen_svr following a shutdown<br>
message?<br>
<br>
If so how do I cleanly shutdown my gen_svr without<br>
loosing messages? I read in the supervisor child spec<br>
that a shutdown can be set to infinity which i hoped<br>
would allow me to process the msg's in my mailbox but if<br>
I do this will my module continue to receive messages<br>
from other processes? Is my approach flawed and if so<br>
what other ways are there to cleanly shutting down my<br>
gen_svr without loosing messages?<br>
<br>
Many thanks,<br>
<br>
Andy.<br>
______________________________<u></u>_________________<br>
erlang-questions mailing list<br>
<a href="mailto:erlang-questions@erlang.org" target="_blank">erlang-questions@erlang.org</a> <javascript:_e({}, 'cvml',<br>
'<a href="mailto:erlang-questions@erlang.org" target="_blank">erlang-questions@erlang.org</a>')<u></u>;><br>
<a href="http://erlang.org/mailman/listinfo/erlang-questions" target="_blank">http://erlang.org/mailman/<u></u>listinfo/erlang-questions</a><br>
<br>
<br>
______________________________<u></u>_________________<br>
erlang-questions mailing list<br>
<a href="mailto:erlang-questions@erlang.org" target="_blank">erlang-questions@erlang.org</a> <javascript:_e({}, 'cvml',<br>
'<a href="mailto:erlang-questions@erlang.org" target="_blank">erlang-questions@erlang.org</a>')<u></u>;><br>
<a href="http://erlang.org/mailman/listinfo/erlang-questions" target="_blank">http://erlang.org/mailman/<u></u>listinfo/erlang-questions</a><br>
<br>
<br>
______________________________<u></u>_________________<br>
erlang-questions mailing list<br>
<a href="mailto:erlang-questions@erlang.org" target="_blank">erlang-questions@erlang.org</a> <javascript:_e({}, 'cvml',<br>
'<a href="mailto:erlang-questions@erlang.org" target="_blank">erlang-questions@erlang.org</a>')<u></u>;><br>
<a href="http://erlang.org/mailman/listinfo/erlang-questions" target="_blank">http://erlang.org/mailman/<u></u>listinfo/erlang-questions</a><br>
</blockquote>
<br>
<br>
<br>
______________________________<u></u>_________________<br>
erlang-questions mailing list<br>
<a href="mailto:erlang-questions@erlang.org" target="_blank">erlang-questions@erlang.org</a><br>
<a href="http://erlang.org/mailman/listinfo/erlang-questions" target="_blank">http://erlang.org/mailman/<u></u>listinfo/erlang-questions</a><br>
</blockquote>
______________________________<u></u>_________________<br>
erlang-questions mailing list<br>
<a href="mailto:erlang-questions@erlang.org" target="_blank">erlang-questions@erlang.org</a><br>
<a href="http://erlang.org/mailman/listinfo/erlang-questions" target="_blank">http://erlang.org/mailman/<u></u>listinfo/erlang-questions</a><br>
</blockquote>
<br>
<br></div></div><span class="HOEnZb"><font color="#888888">
-- <br>
Loïc Hoguin<br>
Erlang Cowboy<br>
Nine Nines<br>
</font></span></blockquote></div><br>