如何对 Rails 应用程序的启动进行基准测试?

发布于 2025-01-06 10:45:04 字数 151 浏览 1 评论 0原文

我将 Rails 应用程序放在 Heroku 上,现在发现它的启动时间非常慢。我的意思是,当我第一次在 Heroku 上(使用浏览器)访问我的网站时,显示索引页面需要太多时间,但是当我随后浏览网站时,请求需要正常时间。

那么我如何查看这个“第一个”请求花费了这么多时间呢?

I put my Rails application on Heroku, and I see now that it has a very slow startup time. What I mean by this is that, when I first go to my website on Heroku (with a browser), it takes too much time to display the index page, but when I browse the website afterwards, the requests take normal time.

So how do I see what takes so much time on this "first" request?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鲜血染红嫁衣 2025-01-13 10:45:04

这是正常的,因为您没有为您的测功机付费,并且第一个测功机将在一定时间后闲置。

http://devcenter.heroku.com/articles/dynos

只有 1 个 Web dyno 的应用程序将在一段时间不活动后闲置。网络测功机将被关闭。当请求进入空闲应用程序时,您的网络测功机将自动旋转回来,从而导致第一个请求出现几秒钟的延迟。后续请求将正常执行。

拥有超过 1 个 Web dyno 的应用程序永远不会闲置。工人动力永远不会闲着。

如果您想查看发生了什么,可以使用命令(从您的安装目录)

heroku 日志

它将显示您服务器的日志。

在我的暂存环境中,如果我现在查询(当我的测功机空闲时),我可以在日志中看到

2012-02-18T12:17:24+00:00 heroku[web.1]: Unidling
2012-02-18T12:17:24+00:00 heroku[web.1]: State changed from down to created
2012-02-18T12:17:24+00:00 heroku[web.1]: State changed from created to starting

[.....]
2012-02-18T12:17:42+00:00 heroku[router]: GET [...] dyno=web.1 queue=0 wait=0ms service=9ms status=200 bytes=0

=>完成我的第一个请求大约花了 20 秒。

it is normal, because you are not paying for your dyno and the first dyno will be idle out after a certain amount of time.

http://devcenter.heroku.com/articles/dynos

Apps that have only 1 web dyno will be idled out after a period of inactivity. The web dyno will be shut down. When a request comes in to an idled app your web dyno will be automatically spun back up, causing a few second delay for this first request. Subsequent requests will perform normally.

Apps that have more than 1 web dyno are never idled out. Workers dynos are never idled out.

If you want to see what is going on, you can use the command (from you installation directory)

heroku logs

It will show the logs of your server.

In my staging enviroment, if I query now (when my dyno is idling) I can see in the logs

2012-02-18T12:17:24+00:00 heroku[web.1]: Unidling
2012-02-18T12:17:24+00:00 heroku[web.1]: State changed from down to created
2012-02-18T12:17:24+00:00 heroku[web.1]: State changed from created to starting

[.....]
2012-02-18T12:17:42+00:00 heroku[router]: GET [...] dyno=web.1 queue=0 wait=0ms service=9ms status=200 bytes=0

=> it took about 20 second to fullfill my first request.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文