Click here to Skip to main content
15,860,844 members
Articles / Web Development / ASP.NET
Article

The ASP.NET Worker Process – Part 1

Rate me:
Please Sign up or sign in to vote.
4.41/5 (37 votes)
17 Jul 20035 min read 208.9K   72   15
Gives an overview of the ASP.NET Worker Process architecture.

Overview

This article is an overview of the ASP.NET worker process in IIS5. IIS6 offers a slightly different architecture (maybe my next article).

Introduction

One of the most important requirements for ASP.NET framework applications is reliability. The architecture of applications running inside the server process (in IIS, Inetinfo.exe) does not produce a solid foundation for building reliable applications that can continue to run over a long period of time. Too many resources are shared on the process level, and it is too easy for an error to bring down the entire server process.

To solve this problem, ASP.NET provides an out-of-process execution model, which protects the server process from user code. It also enables you to apply heuristics to the lifetime of the process to improve the availability of your web applications. Does it scale up to its promises? Lets see, but before that, we should have a concept of AppDomains, marshalling and inter-process communication.

ASP.NET & application domains (AppDomain)

Every Windows application runs inside a certain process. Processes on the other hand own resources like memory and kernel objects. One single process can have multiple threads running inside it, which executes the code loaded in the process. Operating system takes the responsibility to protect processes from unexpectedly running into each other. Possible reasons behind this can be memory leaks in applications, out of bound memory access, null object referencing (GC not involved in this case) etc. If for some reason, one of the applications crashes; other applications running in other processes remain undisturbed. Processes provide a high level of application fault tolerance, which is why IIS and COM+ use them, when running in high isolation mode.

So far so good, but there is one big problem with processes, which is they are an extremely expensive resource to produce and manage, since every process consumes memory. It is quite impractical to use large number of processes since they don’t scale well. Apart from that, communication between processes is also very resource consuming since we have to marshal objects by reference, serialize/deserialize and cross process boundaries, which passes several layers including operating system checks.

However if we run multiple applications in the same process, we will use fewer resources, thus resulting in a faster execution cycle, since DLLs will only be loaded once, and we don’t have to sacrifice for out of boundary calls. There are downsides to this approach, as one application fails, others will be affected as well.

To overcome such issues, .NET introduced application domains, which have the same benefits as the process, but multiple application domains can run within a single process. Application domains can run safely in one single process because of the code verification feature of the CLR, which ensures that the code is managed and safe to run. Every instance of an ASP.NET application is created in an application domain within the ASP.NET worker process.

Worker process creation and recycling

Whenever an old worker process recycles, a newer one is created, which replaces the old one to serve requests. The configuration settings for the creation and control of the worker process are stored in the root configuration file for the computer, Machine.config. The process model is enabled by default. The process model supports two types of recycling: reactive and proactive. The 'userName' and 'password' attributes define the account under which the ASP.NET worker process runs. These default to 'machine' and 'autogenerate' respectively. These values tell ASP.NET to use the built-in ASPNET account and to use a cryptographically strong random password stored in the Local Security Authority (LSA) for that account.

Reactive process recycling

Reactive process recycling occurs when a process is misbehaving or unable to serve requests. The process typically displays detectable symptoms, such as deadlocks, access violations, memory leaks, and so on, in order to trigger a process recycle. You can control the conditions that trigger a process restart by using the configuration settings described in the following table.

Setting description 

  • requestQueueLimit: Handles deadlock conditions. The DWORD value is set to the maximum allowed number of requests in the queue, after which the worker process is considered to be misbehaving. When the number is exceeded, a new process is launched and the requests are reassigned. The default is 5000 requests.
  • memoryLimit: Handles memory leak conditions. The DWORD value is set to the percentage of physical memory that the worker process can consume before it is considered to be misbehaving. When that percentage is exceeded, a new process is launched and the requests are reassigned. The default is 60%.
  • shutdownTimeout: Specifies the amount of time the worker process has to shut itself down gracefully (string value in hr:min:sec format). When the time out expires, the ASP.NET ISAPI shuts down the worker process. The default is 00:00:05.

Proactive process recycling

Proactive process recycling restarts the worker process periodically even if the process is healthy. This can be a useful way to prevent denials of service due to conditions the process model is unable to detect. A process can be restarted after a specific number of requests or after a time-out period has elapsed.

Setting description

  • timeout: String value in hr:min:sec format that configures the time limit after which a new worker process will be launched to take the place of the current one. The default is Infinite, a keyword indicating that the process should not be restarted.  
  • idleTimeout: String value in hr:min:sec format that configures the amount of inactivity, after which the worker process is automatically shut down. The default is Infinite, a keyword indicating that the process should not be restarted.
  • requestLimit: DWORD value set to the number of requests after which a new worker process will be launched to take the place of the current one. The default is Infinite, a keyword indicating that the process should not be restarted.

Conclusion

We are not done yet; the next part of this article will explain session state management, issues regarding working process recycling, best practices and performance tips. Please feel free to report things, which I have missed out or misreported. I will update them. I can be reached at mohsin@ecxs.net.

References

I have collected some text from the following resources:

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Pakistan Pakistan
I am working as a senior software engineer at Xorbix Technologies, USA (www.xorbix.com). My technologies of interest are .NET framework, ASP.NET, C#, SQLServer and other Microsoft Products.
Other than that, my hobbies are music, movies, playing a lot of RPG games and development.

Comments and Discussions

 
QuestionComment Pin
suresh kumar goudampally1-Nov-13 14:44
suresh kumar goudampally1-Nov-13 14:44 
QuestionNice article Pin
Prasyee15-Jun-12 1:28
Prasyee15-Jun-12 1:28 
GeneralMy vote of 1 Pin
mehungry19-Nov-10 21:07
mehungry19-Nov-10 21:07 
GeneralSession Time outs Pin
HASSAN BARI12-Jul-10 9:56
HASSAN BARI12-Jul-10 9:56 
GeneralPart II (for IIS 6) Pin
Vasudevan Deepak Kumar15-Jun-07 1:48
Vasudevan Deepak Kumar15-Jun-07 1:48 
Where is the URL for the Part II of this article? Even the related posts didn't suggest it!Sigh | :sigh:

Vasudevan Deepak Kumar
Personal Homepage
Tech Gossips

Generalexcellent Pin
Naga Rajendra Kumar7-Apr-06 2:36
Naga Rajendra Kumar7-Apr-06 2:36 
GeneralDont trust ASP.NET 1.0 on IIS5 Pin
Anonymous24-Jul-03 15:14
Anonymous24-Jul-03 15:14 
GeneralRe: Dont trust ASP.NET 1.0 on IIS5 Pin
Mohsin Ali Sheikh26-Jul-03 0:47
Mohsin Ali Sheikh26-Jul-03 0:47 
GeneralRe: Dont trust ASP.NET 1.0 on IIS5 Pin
Kjetil Dahl Knutsen25-Nov-03 0:42
Kjetil Dahl Knutsen25-Nov-03 0:42 
GeneralRe: Dont trust ASP.NET 1.0 on IIS5 Pin
mayank vaish8-Jul-05 19:50
mayank vaish8-Jul-05 19:50 
GeneralA Brilliant Article Pin
Jason Schiedemeyer18-Jul-03 13:23
sussJason Schiedemeyer18-Jul-03 13:23 
GeneralRe: A Brilliant Article Pin
Mohsin Ali Sheikh18-Jul-03 13:32
Mohsin Ali Sheikh18-Jul-03 13:32 
GeneralRe: A Brilliant Article Pin
kbuchan22-Jul-03 2:18
kbuchan22-Jul-03 2:18 
GeneralRe: A Brilliant Article Pin
Tittle Joseph2-Sep-05 2:23
Tittle Joseph2-Sep-05 2:23 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.