up vote 4 down vote favorite
share [g+] share [fb]

When I setup an application pool for my web app in IIS 6 it defaults the worker process to recycle in 1740 minutes (29 hours).

Does this recycle happen even if there is activity on the web site or only if there is inactivity for 29 hours?

link|improve this question

77% accept rate
Good question, but no answers below really answer your question. I'm still confused. If a recycle takes place after 29 hours, will it allow requests to finish or not? – JL. Feb 12 '10 at 11:33
@JL: This may be helpful: blogs.msdn.com/b/david.wang/archive/2005/09/19/… Basically, IIS will continue to process requests (assuming your recycling is overlapped), but the application will lose user session state unless specially designed to save the state to disk. – Mashmagar Jan 27 '11 at 15:00
feedback

2 Answers

up vote 2 down vote accepted

This depends on how your worker process recycling is configured. There are several ways to configure it and each one has different implications.

  • Elapsed Time: In this mode the process will recycle after a period of time no matter how many requests come in
  • After a request threshold is reached
  • On Demand through the IIS Manager Tool

You can find detailed information on this topic at the following link

link|improve this answer
feedback

Read the Fine Manual

in particular, Configuring Worker Processes for Recycling (IIS 6.0)

link|improve this answer
1  
Someone downvoted me for providing a direct link to the manufacturer documentation that describes in detail when IIS worker processes get recycled? – Cheeso Feb 12 '10 at 23:17
feedback

Your Answer

 
or
required, but never shown

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