vote up 3 vote down star
1

Here on StackOverflow, we're seeing a few "Request timed out" exceptions every day.

The facts:

  • Request timeout is the default 90 seconds
  • Occurs only on POSTs
  • Data posted is text, usually small (< 1KB), but can range to a few KB
  • No Form data is captured in server variables
  • Client UAs are diverse: IE5.5 - 7, Firefox 3.0.5, iPhone, Chrome
  • Client locations are diverse: UK, France, USA - NC, OH, NE, IN

We've tested a server-based timeout (i.e. using Thread.Sleep) and all form variables are correctly captured in the exception log - this leads us to believe the client is having issues sending the request in the allotted time.

Any thoughts on how to trap/debug this condition are very welcome!

flag

Have you got any more info suggesting other things besides the POST? i.e. specific users/browsers/OSes/ISPs/URLs? FWIW I don't think I've ever come across a timeout like this myself. – Ant P Jan 14 at 3:34
Updated the question to include some of the client info. – Jarrod Dixon Jan 14 at 4:27

6 Answers

vote up 1 vote down check

I've got the same problem on our production servers that use a small AJAX webservice. After doing packet captures outside our firewall, we found that the POST to the service was coming in two TCP segments and the second segment never got to us. (first packet only contains headers, the second missing packet should be the json body) So basically IIS is just sitting there waiting for the rest of the POST. After the configured timeout, the server sends a RST packet to the client and logs the "Request timed out" error - which is correct behavior.

We are trying to get a client repro without much luck, but in our case this appears to be completely network related (or possibly some "security" software that doesn't like the contents of the post).

link|flag
This is really all we've been able to determine - complete requests are not making it to the server. It's troubling, as you want to serve every request, especially POSTs for voting and asking/answering questions! – Jarrod Dixon Aug 23 at 8:31
It also looks like a lot of the unfinished requests are from "spammy" sources. – Jarrod Dixon Oct 16 at 1:18
vote up 2 vote down

Have you tried posting manually via telnet and simply not completing the POST. I'd be interested to see if you could replicate the behavior you are seeing. Given the nature of the site, I wouldn't be surprised if you were getting a few malformed POSTs intentionally to try and hack the system.

I have noticed on occasion that I need to restart Safari in order to get SO working again after some action hangs, but I assumed it was my problem.

link|flag
I'll do this tonight - thanks for the suggestion! – Jarrod Dixon Jan 14 at 4:00
I wasn't able to reproduce the behavior - long running requests are just 504'ed. But this is good, because we know it's (probably) not client issues, as the ASP.NET pipeline isn't even reached. – Jarrod Dixon Jan 14 at 6:06
vote up 2 vote down

We used to see those a lot with our very high traffic web client -- wonder if it's related. What supposedly was happening was the HttpWebRequest (I'm assuming you're having problems with HttpWebResponse? Maybe they have the same issues) uses some janky thread pool underneath the covers, even when your requests are synchronous. Every now and then something would deadlock because some other .NET object higher in the stack was using the same system threadpool and one would starve the other out, eventually causing a timeout. I think the issue is better described here: http://www.deez.info/sengelha/2005/03/03/beware-threadpools-and-httpwebrequest/

link|flag
Very intense article there - it implies the issue was fixed in 2.0. Will research more on that to see if that's so. – Jarrod Dixon Jan 14 at 5:21
vote up 2 vote down

If you are running IIS 7 you could use the Failed Request Tracing. I haven't actually used it for timeouts, I mostly have set it up to capture just specific http error codes. But I know you can get it to dump traces of any request taking more than X amount of time.

link|flag
Yes, we were going to turn this back on tonight - thank you for the reminder :) – Jarrod Dixon Jan 14 at 5:13
We're also going to add some trace statements to the affected urls' code paths - hopefully this will aid in finding the issue. – Jarrod Dixon Jan 14 at 6:10
See stackoverflow.com/questions/442258/… – Jarrod Dixon Jan 14 at 8:37
vote up 1 vote down

I would also scan the IP addresses in your logs to see if it's the same people having issues repeatedly. You know, it's just possible that some people are still using dial up accounts, or there may be other networking issues on their end. But, of course, don't just write it off without investigating as much as you can.

link|flag
vote up 0 vote down

We are experiencing the same "Request timed out" issue with our webservers after switching from IIS6 to IIS7. I believe the issue is IIS7-specific. My guess is that these errors were swallowed or ignored further up the processing chain in IIS6, before the request was handed-off to ASP.Net for processing. I am turning on Failed Request Tracing today to see if I can trap any more information about the issue. So far it seems that your explanation of client-side causes seems the most valid.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.