Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the best practice for deciding how many worker processes to allow for an ASP.NET web application?

On one server I manage, creating a new AppPool defaults to 10 (maximum) worker processes. Other people suggest that the normal setting is one.

What problem does multiple worker processes solve and what are the techniques for deciding on how many?

share|improve this question
I wasn;t sure if this would be more appropriate here or on ServerFault, let me know if I made the wrong choice and I'll move it. – Tim Long Jan 27 '10 at 23:48
2  
Go ahead and ask in both places. I think your question is relevant here. The specifics of ASP.Net deployment often fall into the developer's area of expertise, especially as it pertains to app optimization. – DOK Jan 27 '10 at 23:56
3  
I agree with DOK. Both places are appropriate. Dev's are often the ones that have to tell the network guys how to configure the server. Because of this, they need to have this info. – Chris Lively Jan 28 '10 at 0:20

2 Answers

up vote 12 down vote accepted

Worker processes are a way of segmenting the execution of your website across multiple exe's. You do this for a couple of reasons, one if one of the workers gets clobbered by run time issues it doesn't take the others down. For example, if a html request comes in that causes the process to run off into nothing then only the other requests that are being handled by that one worker processor get killed. Another example is that one request could cause blocking against the other threads handled by the same worker.

As far as how many you need, do some load testing. Hit the app hard and see what happens with only one. Then add some more to it and hit it again. At some point you'll reach a point of truly saturating the machines network, disk, cpu, and ram. That's when you know you have the right balance.

Incidentally, you can control the number of threads used per worker process via the machine.config file. I believe the key is maxWorkerThreads.

Now, beware, if you use session, Session state is not shared between worker processes. I generally recommend avoiding session anyway but it is something to consider.

For all intents and purposes you might consider each worker process as it's own separate web server. Except they are running on the same box.

share|improve this answer
In fact, it was a problem with session state that sparked this question (see stackoverflow.com/questions/2147578/…). Thanks for a helpful answer (+1) – Tim Long Jan 28 '10 at 17:19
1  
The default setting is normally one. Your server that defaults to 10 must have been modified to change it's defaults. – Chris Lively Jan 28 '10 at 18:59

The guidelines here are pretty good: http://msdn.microsoft.com/en-us/library/ms998549.aspx

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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