我有一对作为Web服务器和WCF服务器运行的Win 2012服务器,我想增加从Web服务器到WCF服务器的传出连接数(似乎限制为24)
我已经证明WCF服务器可以处理超过24个并发连接(通过使用JMeter和800个线程加载WCF WSDL) - 所以这指示我相信ASP.NET传出连接受到限制。
我已经尝试过了;
machine.config
添加到Web和WS web.config文件中processModel
httpRuntime
和<connectionManagement>
<add address="*" maxconnection="96"/>
</connectionManagement>
值(来自here)例如:
<processModel maxWorkerThreads="100" maxIoThreads="100" minWorkerThreads="50" />
<httpRuntime minFreeThreads="176" minLocalRequestFreeThreads="152" />
和
<serviceThrottling maxConcurrentCalls="32" maxConcurrentSessions="200" maxConcurrentInstances="232"/>
在Web服务中,我已经尝试过服务模型行为设置(2个CPU);
{{1}}