IIS 中的连接数较多
我在其中一台 IIS 服务器上托管了我们的 Web 服务。 我们的许多 Web 服务调用对该服务器均失败。尽管没有连接,该服务器上的负载似乎正常。
以下是统计数据,
Total Reqest/Sec - 150~200
Request Execution Time - 0-10ms (mostly 0)
Request Executing - 0 - 5
PipeLine Instance Count - 0
Web service -> Current connections - 8k~10k
%processor time - 1~2%
除了连接数之外,我没有看到主要问题。由于 Web 服务主要返回静态数据,如何减少连接数。
或者说还有什么其他原因吗?
I have hosted our web service on one of the IIS server.
Many of our web service calls are failing for that server. Load on that server seems to be normal despite no of connections.
Below are the statistics
Total Reqest/Sec - 150~200
Request Execution Time - 0-10ms (mostly 0)
Request Executing - 0 - 5
PipeLine Instance Count - 0
Web service -> Current connections - 8k~10k
%processor time - 1~2%
I do not see major issue here apart from number of connections. How can I reduce the number of connections since web service is mostly returning the static data.
Or is there any other reason that to this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在服务客户端中,确保关闭正在建立的所有连接。我们遇到了类似的问题,并通过关闭客户端的代理连接来解决它。
In the service client, make sure you are closing all the connections that you are making. We had similar issue, and resolved it by just closing the proxy connections on client side.