<div dir="ltr">I am specifically looking for a way to timeout/kill a blocking task that is taking too long to return.  Is this something that should be handled when dispatching to the underlying executor?<div><br></div><div>
Bill</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Wed, Aug 20, 2014 at 1:46 AM, Stuart Douglas <span dir="ltr">&lt;<a href="mailto:sdouglas@redhat.com" target="_blank">sdouglas@redhat.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">This is an area that we are looking to improve. In particular I am looking into adding more options in this area, to give more control over when timeouts are applied.<br>

<br>
For example I am thinking something like:<br>
<br>
NO_REQUEST_TIMEOUT - How long the server should wait between requests<br>
PARSE_TIMEOUT - the maximum amount of time that should be spent parsing a HTTP request<br>
READ_TIMEOUT - When reading a request entity the maximum idle timeout<br>
<br>
I&#39;m not sure if this covers all the use cases though.<br>
<br>
Stuart<br>
<br>
<br>
Bill O&#39;Neil wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div class="h5">
I have been having trouble figuring out how to set request timeouts and<br>
how to handle them.<br>
<br>
I have been messing around with the following.<br>
<br>
Undertow server = Undertow.builder()<br>
     .addHttpListener(8080, &quot;localhost&quot;)<br>
     .setSocketOption(<u></u>UndertowOptions.IDLE_TIMEOUT, 1000)<br>
     .setSocketOption(Options.READ_<u></u>TIMEOUT, 1000)<br>
     .setSocketOption(Options.<u></u>WRITE_TIMEOUT, 1000)<br>
<br>
When setting a HttpHandler that sleeps this will return an empty reply<br>
from server.<br>
<br>
curl -v localhost:8080<br>
* Adding handle: conn: 0x7f81a900ee00<br>
* Adding handle: send: 0<br>
* Adding handle: recv: 0<br>
* Curl_addHandleToPipeline: length: 1<br>
* - Conn 0 (0x7f81a900ee00) send_pipe: 1, recv_pipe: 0<br>
* About to connect() to localhost port 8080 (#0)<br>
*   Trying ::1...<br>
*   Trying 127.0.0.1...<br>
* Connected to localhost (127.0.0.1) port 8080 (#0)<br>
 &gt; GET / HTTP/1.1<br>
 &gt; User-Agent: curl/7.30.0<br>
 &gt; Host: localhost:8080<br>
 &gt; Accept: */*<br>
 &gt;<br>
* Empty reply from server<br>
* Connection #0 to host localhost left intact<br>
curl: (52) Empty reply from server<br>
<br>
1. What is the proper way to handle time outs?<br>
2. Is it possible to set different timeouts per HttpHandler?<br>
<br>
Thanks,<br>
Bill<br>
<br></div></div><div class="">
______________________________<u></u>_________________<br>
undertow-dev mailing list<br>
<a href="mailto:undertow-dev@lists.jboss.org" target="_blank">undertow-dev@lists.jboss.org</a><br>
<a href="https://lists.jboss.org/mailman/listinfo/undertow-dev" target="_blank">https://lists.jboss.org/<u></u>mailman/listinfo/undertow-dev</a><br>
</div></blockquote>
</blockquote></div><br></div>