my maximum worker processes always set to 1
About the IIS site request queue length?
OS: Windows Server 2016 Standard
IIS: Version 10.0.14393.0
Web Sites: WebIISQueueTest .NetFramework4.5 Asp.net mvc
Question 1: By which performance counter does the site's request queue length be monitored?
Question 2: The request queue length is set but can be exceeded, why not return 503.
Performance counters HTTP Service Request Queues (CurrentQueueSize): The request count in the IIS queue on windows server 2016
The CurrentQueueSize property always has a zero value , why ?
application pool img: https://i.stack.imgur.com/k8tsS.png
12 answers
Sort by: Most helpful
-
-
-
aspx 6 Reputation points
2021-12-29T10:26:42.857+00:00 The same number of concurrent client requests and same IIS configuration
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Config\machine.config , <processModel autoConfig="true"/>
C:\Windows\System32\inetsrv\config\applicationHost.config , <serverRuntime appConcurrentRequestLimit="5000" />win10-iis ver: 10.0.19041.1415 , CurrentQueueSize works. RejectedRequest works
win2016-iis ver: 10.0.14393.0 , CurrentQueueSize doesn't work. RejectedRequest works
win2008-iis ver: 7.5.7600.16385 , CurrentQueueSize doesn't work . RejectedRequest worksBUG??
-
aspx 6 Reputation points
2021-12-30T07:29:09.613+00:00 The key question is : "still waiting for connect in the queue" ,the queue was full, so rejected, How do I monitor it by performance counter????
-
aspx 6 Reputation points
2022-01-04T02:36:25.46+00:00 please help answer, up......