Ruby mod_passenger 进程超时
我使用过的一些 Ruby 应用程序因缓慢的调用而挂起很长时间,导致进程在计算机上备份,最终需要重新启动。 Passenger 中是否有一种快速简便的方法来限制单个 Apache 调用的执行时间。
在 PHP 中,如果进程超过 php.ini 中的最大执行时间设置,该进程将向 Apache 返回错误,并且服务器会保持愉快的状态。
A few Ruby apps I've worked with hang for a long time on slow calls causing processes to backup on the machine eventually requiring a reboot. Is there a quick and easy way in Passenger to limit a execution time for a single Apache call.
In PHP if a process exceeds the max execution time setting in php.ini the process returns an error to Apache and the server keeps merrily plugging away.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会考虑修复该应用程序。在 Web 服务器级别切断请求实际上更像是一种创可贴,并没有解决核心问题 - 请求失败,无论怎样。如果 Ruby 应用程序依赖于另一个超时的服务,您可以使用 timeout.rb 库来修补代码,如下所示:
这将使代码“放弃”并在需要时优雅地关闭请求。
I would take a look at fixing the application. Cutting off requests at the web server level is really more of a band aid and not addressing the core problem - which is request failures, one way or another. If the Ruby app is dependent on another service that is timing out, you can patch the code like this, using the timeout.rb library:
This will let the code "give up" and close out the request gracefully when needed.