vote up 1 vote down star
1

After years of ASP.NET development I'm actually quite surprised that I can't seem to find a satisfying solution for this.

Why does an IIS ASP.NET site always seem to fall asleep (for 2-6 seconds) after a certain time of inactivity (after several hours), during which no HTTP response is sent from server to client. This happens on any type of site, one page or many, db or not, regardless the settings. How can I fix this?

During the wait time, the server is not busy and there are no high peaks or (.NET) memory shortages. My guess is, it has to do with Windows moving the IIS process to the background and its memory to the page file, but I'm not sure. Anybody any idea?

EDIT: one solution is to send some HTTP request once an hour or so, but I hope for something more constructive.
EDIT: what I meant is: after hours of inactivity, it pauses several seconds on any new HTTP request.

flag

73% accept rate
+1, but belongs on serverfault. – John Gietzen Nov 3 at 21:51
Are you compiling your site? If not you're missing out on some very big performance improvements. – theminesgreg Nov 3 at 21:52
@theminesgreg: sites are compiled, debug is not set, optimizations are on for the (any) dlls. @John: Not sure it belongs on serverfault, as this really troubles me as a programmer, but correct me if I'm wrong – Abel Nov 3 at 21:53
Agree we should assume this is a code problem with the ASP.NET application until it becomes obviously otherwise. – Rex M Nov 3 at 21:54
Note: this is not just one site, it is any site that I've seen, either build by me or by someone else. "Professional" shopping sites show this behavior at night when there's noone online, private one-page experiments show this behavior too. I may be missing a compile/publish setting, but then others have missed that too and I'd love to hear of it. – Abel Nov 3 at 21:57
show 4 more comments

1 Answer

vote up 2 vote down check

The default timeout for IIS is 20 minutes. What this means is if your ASP.NET application does not receive any new requests for 20 minutes, it will shut down the worker process. It can take a considerable amount of time to warm up the process from nothing - loading assemblies into memory, precompilation, etc.

(Edit: I put together a simple helper class that resolves the standard timeout issue - basically the web application "pokes" itself every so often to keep the process alive. The ideal approach is to change the setting in IIS, but for servers where this is not possible, my class works quite well.)

While the worker process is still alive, it should not be deprioritized. Certainly not as quickly as you're describing. It is possible you could relying on items that are cached for a very short period of time, and are falling out when they've not been requested for more than a few seconds. Without knowing more about the details of your application, it's impossible to say.

As usual, profiling your application is the only way to yield concrete information. Using a product like ANTS will help you determine where in the code your application is spending the most time, so you can isolate where the "hang" is occurring.

link|flag
You point at some interesting thoughts. I always assumed it never got to the Application_Start, but what do I know, perhaps it gets there, loads libs etc, and then resumes. Please note that the time is not 20min (session timeout time), it chokes for a little while after approx 3+ hours, but I'm not sure. The time may be variable. It's not just "a site", it's "all sites" on many systems and IIS / Windows versions. All are .NET 3.5 though. – Abel Nov 3 at 22:03
On "but what do I know" >>> meant to say: I should log, or turn Trace on or whatever. I know ANTS but not sure it can help here: the blocking seems to happen before anything is loaded, which would include ANTS. – Abel Nov 3 at 22:04
Just noticed same comment here eggheadcafe.com/software/aspnet/…, which mentions this idle timeout. It doesn't happen locally, only remote on configurations I do not always manage. It shouldn't take long to figure out whether it's all in this setting. – Abel Nov 3 at 22:11
+2! That's an excellent little class, with a very nice technique! My own approach so far was with a background thread, but if you know the troubles of threads in ASP.NET I rather avoid them. Using cached objects and its timeouts is excellent. Q. should stay on SO now :P – Abel Nov 4 at 0:46

Your Answer

Get an OpenID
or

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