Windows – IIS 7.5中应用程序池的CPU限制

前端之家收集整理的这篇文章主要介绍了Windows – IIS 7.5中应用程序池的CPU限制前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我看到在iis 7.5中我可以为应用程序池设置一个指定时间的 CPU % utilization limit.如果违反此限制,我也可以杀死工作进程.如果告诉它这样做,工作进程会在被杀后自动重启,还是需要手动干预?

在Stack Overflow there is the mention that结束时,它可以在间隔完成时重新启动…

这看起来像其中一种情况,其中模拟(或源代码访问…>叹息<)可能是以任何程度的置信度查看行为的唯一方式. 有关回收的 event log entry for CPU quota recycling文件如下:

By default,application pool recycling is overlapped,which means that the worker process that is to be shut down is kept running until after a new worker process is started. After a new worker process starts,new requests are passed to it. The old worker process shuts down after it finishes processing its existing requests,or after a configured time-out,whichever comes first. This way of recycling ensures uninterrupted service to clients. However,if an application in the application pool cannot run more than one instance of itself at a time,overlapping rotation can be disabled.

在我看来,根据定义,由于cpu消耗过多而终止工作进程将意味着不允许完成挂起的请求(因为它们耗尽了cpu配额).

说到你的主要问题:我没有看到任何让我相信新的工人流程不会自动旋转的东西.您的Stack Overflow链接中的语句确实让我怀疑,IIS使用的算法实际上是否可以将回收与用于测量cpu配额耗尽的计时器的分辨率联系起来.我知道确定的最佳方法是编写cpu浪费的服务器端组件,将其部署到测试环境中,并查看其回收行为的行为.一个简单的组件,它在一个紧密的循环中停留几秒钟,然后返回一个已知的字符串,与一个运行测试工具的客户端相结合,可能就像一个并行的“wget”进程池.用一堆来自客户端的并行请求来锤击它,并报告请求如何获得正确的响应与错误消息等等.(这让我觉得如此愚蠢,不得不求助于这样的事情而不是去看看在源代码…)

原文链接:/windows/369843.html

猜你在找的Windows相关文章