Click here to Skip to main content
15,884,176 members
Articles / Web Development / IIS
Tip/Trick

Setting the best value for Application pool Queue length limit

Rate me:
Please Sign up or sign in to vote.
5.00/5 (5 votes)
5 Aug 2010CPOL 39.4K   2  
Setting the best value for Application pool Queue length limit
Hi,

I was doing some experiment in finding the best limit/setting for the application queue limit in IIS....and here goes the results( I found this at Administrators pocket guide for IIS 6)

Formula for calculation :


Application pool Queue Length limit = ( Available memory in MB * number of processors * 10 ) / ( total number of
application pools).

for eg: let us say that i have 10 applications ( i mean 10 application pool, one to each application) and available memory 500 MB, and machine has Core 2 duo processor ,
then the good number for Application queue length limit is
500 * 2 * 10 / 10 = 1000

A small twist, let us say your machine has only one application in the previous case, then you shouldnt use the above formula for calculation

If you use you will go for a toss by setting 10000

I hope this helps!.

Regards,
Vinayak

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect MindTree Ltd
India India
Motivated achiever who guides organizations in applying technology to business settings, provides added value, and creates project deliverables in a timely manner. An experienced Technical Consultant, have successfully led large project teams of more than 20 people from requirements gathering to implementation and support using C#, .NET ,ADO.NET, ADO.NET Entity Framework,ASP.NET,ASP.NET MVC, WCF and SQL Server.

Comments and Discussions

 
-- There are no messages in this forum --