ProcessModelSection.RequestQueueLimit Property
.NET Framework (current version)
Gets or sets a value indicating the number of requests allowed in the queue.
Assembly: System.Web (in System.Web.dll)
[ConfigurationPropertyAttribute("requestQueueLimit", DefaultValue = 5000)] [TypeConverterAttribute(typeof(InfiniteIntConverter))] [IntegerValidatorAttribute(MinValue = 0)] public int RequestQueueLimit { get; set; }
If the number of requests allowed in the queue is exceeded, ASP.NET begins returning "503 – Server Too Busy" errors to new requests. When this limit is reached, the system is operating in abnormal conditions. This might be a symptom of a malfunction or, maybe, just high load. Restarting (bouncing) the worker process might become the only way to prevent further problems.
.NET Framework
Available since 2.0
Available since 2.0
Show: