IIS Site Hitting Cap of 64 for "Requests Executing" Performance Counter

Chandler Zwolle 1 Reputation point
2022-04-22T17:53:21.513+00:00

Hello,

In our production environment, when the system is under heavy load, one of our applications (let's call it "App X", a WCF service using .NET Framework 4.6.1) hosted by IIS is hitting a cap of "64" for ASP.NET Apps v4.0.30319 Requests Executing. We've not made any configuration changes to the site (everything should be default), and it's the only site in the pipeline that seems to hit this cap.

All requests that come to this app first go through a different WCF app (let's call this one "App Y") that may be processing 1,000+ requests at a time (so, clearly not hitting the same 64 request cap as App X). I'm guessing these requests are piling up because App X is stuck at only processing 64 requests at a time.

App X and App Y both have the same IIS configurations. We've tried the following:

  • Reviewed all application pool and IIS site settings for any red flags or differences between App X and App Y
  • Created a new IIS site and application pool to host App X
  • Setting ServicePointManager.DefaultConnectionLimit = int.MaxValue; in the service's class constructor.
  • Explicitly setting the maxConcurrentReqeustsPerCPU value in the aspnet.config file for .NET v4.0 (this actually caused the IIS site to stop working)
  • Had a network expert monitoring performance and limits while the system was under heavy load in an effort to find red flags
  • Confirmed there are no traffic limits on applicable ports / channels

All other settings that I've read about seemed to only be applicable for older versions of IIS or the .NET Framework.

The server hosting these sites run on Windows Server 2012 R2 Datacenter, with 6 logical processors.

Here's are two screen caps of the performance monitors while the system is under heavy load. This first one is of App Y, which is the first WCF application to receive the requests in this pipeline:
195682-image.png

This next one is of App X, which is the WCF application that seems to only process 64 requests at a time:
195656-image.png

We are not sure why this cap of 64 requests is being hit. The CPU and memory on all servers (including our database server) is well within reasonable limits.

Any guidance or direction on things we should try would be a huge help.

Thanks,
Chandler

Internet Information Services
Windows Communication Foundation
Windows Communication Foundation
A Microsoft runtime and set of application programming interfaces in the .NET Framework for building service-oriented applications.
285 questions
C#
C#
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
8,160 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Bruce (SqlWork.com) 35,641 Reputation points
    2022-04-22T18:09:21.833+00:00

  2. Bruce (SqlWork.com) 35,641 Reputation points
    2022-04-22T19:36:06.21+00:00

    you really should upgrade the project to 4.8 4.6.1 support ends next week.

    it has been years since using 4.6.1, but I think its:

    System.Net.ServicePointManager.DefaultConnectionLimit = MAX_CONNECTIONS;

    note: the default was 2, so I assume your code has bumped somewhere. the outgoing limit was due concerns about a single process saturating a server.