由于之前使用的是默认配置,服务器最多只能处理5000个同时请求,今天下午由于某种情况造成同时请求超过5000,从而出现了上面的错误。
为了避免这样的错误,我们根据相关文档调整了设置,让服务器从设置上支持10万个并发请求。
大概以下 4 步
1. 调整IIS 8应用程序池队列长度
2、调整IIS 8的appConcurrentRequestLimit设置
3、调整machine.config中的processModel>requestQueueLimit的设置
4. 修改注册表,调整IIS 8支持的同时TCPIP连接数
具体设置如下:
1. 调整IIS 7应用程序池队列长度
由原来的默认1000改为65535。
IIS管理器 > 应用程序池 > 高级设置
队列长度: 65535
2. 调整IIS 7的appConcurrentRequestLimit设置
由原来的默认5000改为100000。
c:\windows\system32\inetsrv\appcmd.exe set config /section:serverRuntime /appConcurrentRequestLimit:100000
在%systemroot%\System32\inetsrv\config\applicationHost.config中可以查看到该设置:
3. 调整machine.config中的processModel>requestQueueLimit的设置
%systemroot%\Microsoft.Net\Framework64\v4.0.30319\CONFIG\machine.config
由原来的默认5000改为100000。
找到 健 processModel,他的设置是 <processModel autoConfig="true"/> 改成 <processModel enable="true" requestQueueLimit="100000" />
参考文章:http://technet.microsoft.com/en-us/library/dd425294(office.13).aspx
4. 修改注册表,调整IIS 7支持的同时TCPIP连接数
由原来的默认5000改为100000。
reg add HKLM\System\CurrentControlSet\Services\HTTP\Parameters /v MaxConnections /t REG_DWORD /d 100000
5. 运行命令使用设置生效
net stop http & net start http & iisreset
完成上述4个设置,就可以支持10万个并发请求。
参考:
https://www.cnblogs.com/valu/p/6901455.html
https://my.oschina.net/u/1440971/blog/1798466/
https://cloud.tencent.com/developer/article/1405671