We have an ASP.NET app running on a Azure Windows Server 2012 R2 VM with IIS 8. All settings are pretty much default.
Our app runs on two web application. One for the frontend (MVC) and one for the API (Web API). Both use the DefaultAppPool.
Today one Web API request had a SQL server call that didn't return until the timeout (that SQL server was offline). But funny enough, all other calls to our Web API project also seemed blocked after that. We might have about 50 users on our website and maybe 5 users made a call to this blocking method at the same time.
So I'm a bit confused to why all other requests were also blocked. The request to the MVC frontend were not blocked. Even though it's using the same thread pool.
Reading the discussions about thread pools on IIS, I think we should have enough threads to handle a situation like this?
asp.net Thread-pool max threads - clarification?
What am I missing here?