We use Kentico CMS and I've exchanged emails with them about a web garden deployment.

We have a single site running on a server with 8 cpu cores. In line with Kentico's advice, we have not altered the application pool web garden setting from the default i.e. it is set to a maximum number of worker processes of 1.

Our experience is that the site only uses one of the cpu cores - the others are idling. When I emailed them about this, their response was that the OS/IIS would handle this and use other cores as necessary even though the application pool only has a single worker process.

Now, I've a lot of respect for the guys at Kentico, but this doesn't seem right to me?

Surely, if we want to use all cores, we need to permit eight worker processes (and implement session state storage in SQL server)?

Many thanks

Tony

link|improve this question
feedback

1 Answer

You're right, in order to parallelize execution you need multiple worker processes and/or multiple application pools.

A bit of tuning will be required, anyway; you can't (usually) simply run as many WPs as CPU cores you have; especially if SQL Server is also running on the same server.

link|improve this answer
Massimo is right, going into a Web garden scenario will boost your application performance check this iis-aid.com/articles/performance_testing/…, but you will need to keep an eye on this article as well msdn.microsoft.com/en-us/library/z1hkazw7.aspx – Vivek Kumbhar Mar 27 '10 at 0:40
feedback

Your Answer

 
or
required, but never shown