- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个具有以下版本的 Ruby on Rails 应用程序:
ruby :1.9.3-p547
导轨:3.2.16
我在此应用程序中遇到一些性能问题。我最初诊断此问题的努力使我开始使用文章中提到的 RackTimer gem ( https://github.com/joelhegg/rack_timer ) http://www.codinginthecrease.com/news_article/show/137153记录中间件时间戳。
使用它我发现 Rack::Lock 消耗了大量时间。下列的以下是以下日志中的一些 RackTimer 日志:
Rack Timer (incoming) -- Rack::Lock: 73.77910614013672 ms
Rack Timer (incoming) -- Rack::Lock: 67.05522537231445 ms
Rack Timer (incoming) -- Rack::Lock: 87.3713493347168 ms
Rack Timer (incoming) -- Rack::Lock: 59.815168380737305 ms
Rack Timer (incoming) -- Rack::Lock: 55.583953857421875 ms
Rack Timer (incoming) -- Rack::Lock: 111.56821250915527 ms
Rack Timer (incoming) -- Rack::Lock: 119.28486824035645 ms
Rack Timer (incoming) -- Rack::Lock: 69.2741870880127 ms
Rack Timer (incoming) -- Rack::Lock: 75.4690170288086 ms
Rack Timer (incoming) -- Rack::Lock: 86.68923377990723 ms
Rack Timer (incoming) -- Rack::Lock: 113.18349838256836 ms
Rack Timer (incoming) -- Rack::Lock: 116.78934097290039 ms
Rack Timer (incoming) -- Rack::Lock: 118.49355697631836 ms
Rack Timer (incoming) -- Rack::Lock: 132.1699619293213 ms
可以看出,Rack::Lock 中间件处理时间在 10 毫秒到 130 秒以上之间波动。 其中大部分内容都是在我的主页上提供资源时出现的。
顺便说一句,我在 config/application.rb 中启用了 Assets 管道
# Enable the asset pipeline
config.assets.enabled = true
我已将生产版本应用程序配置为由 NewRelic 进行监控。图表还突出显示了 Rack::Lock 所用的最高百分比和时间。
我完全不知道是什么导致 Rack::Lock 花费如此多的毫秒。如果社区中的任何人能够提供宝贵的指导来找出可能导致此问题的原因以及如何解决它,我将不胜感激?
下面可以找到Gemfile,所有中间件涉及的内容以及开发环境日志。
gem 文件:
https://gist.github.com/JigneshGohel-BoTreeConsulting/1b10977de58d09452e19
涉及的中间件:
https://gist.github.com/JigneshGohel-BoTreeConsulting/91c004686de21bd6ebc1
开发环境日志:
-----首次加载主页索引页
https://gist.github.com/JigneshGohel-BoTreeConsulting/990fab655f156a920131
----- 第二次加载主页索引页而无需重新启动服务器
https://gist.github.com/JigneshGohel-BoTreeConsulting/f5233302c955e3b31e2f
谢谢,吉格内什
最佳答案
在我发布上面的问题后,我在这里发布我的发现。希望其他人在遇到上述情况时能从这些发现中受益。
与我的一位高级同事Juha Litola讨论Rack::Lock问题时,以下是他的第一想法(原样引用他自己的话):
Could it just be possible that you are seeing measuring artifact in sense that you are just seeing Rack::Lock as taking a lot of time, but that is just because it is wrapping the actual call? So the Rack::Lock time is cumulative time from everything that happens in the request processing. See
https://github.com/rack/rack/blob/master/lib/rack/lock.rb .
As for the performance issues, could you elaborate on what kind of problems you have so I could help?
我认为这是有可能的。然而,由于以下疑问,我无法说服自己相信这种可能性:
Rack::Lock
位于中间件链中带有 Rails 应用程序的第二个位置(请参阅我在上面的帖子中提到的中间件列表 https://gist.github.com/JigneshGohel-BoTreeConsulting/91c004686de21bd6ebc1 )。并且每个中间件在链中按顺序进行处理。因此 Rack::Lock
将是第二个处理请求的然后链条中的其他人就有机会加入。
在这种情况下,根据我的理解,我不认为 Rack::Lock 中间件记录的时间戳是请求处理中发生的所有事情的累积时间。它应该是 Rack::Lock 所花费的时间中间件本身。
后来 Juha,花了几分钟查看服务器(参见下面的注释)配置提供了以下输入:
With a quick look I think that there is a quite clear problem in how the application has been configured. Application doesn’t have config.threadsafe! enabled, which means that Rack::Lock is enabled, and request processing is limited to one thread / process. Now puma is configured only to have one process, but 16-32 threads. What this means in effect that puma is currently processing only one request at given moment.
Best solution would of course be if you could enable thread safe mode, but that will require thorough testing. If that fails or is not an option puma should be configured with multiple workers with 1 thread each.
注意:我忘记添加有关部署我的应用程序的 Web 服务器配置的任何详细信息。我们正在使用 Puma Web 服务器 ( https://github.com/puma/puma )
这样我就得到了进一步深入了解config.threadsafe!的提示。在网上搜索我发现了以下文章
http://www.sitepoint.com/config-threadsafe/
http://tenderlovemaking.com/2012/06/18/removing-config-threadsafe.html
关于启用或禁用选项config.threadsafe!如何影响生产中部署在多线程或多进程网络服务器上的应用程序的性能提供了深刻的见解。
上述文章内容的简要总结
什么是 Rack::Lock?
Rack::Lock is a middleware that is inserted to the Rails middleware stack in order to protect our applications from the multi-threaded Bogeyman. This middleware is supposed to protect us from nasty race conditions and deadlocks by wrapping our requests with a mutex. The middleware locks a mutex at the beginning of the request, and unlocks the mutex when the request finishes.
假设有一个程序正在运行,并向其代码(例如 Controller )不是线程安全的应用程序同时发送 5 个请求 100 次。
现在让我们观察一下 Rack::Lock 中间件与 config.threadsafe 组合的影响!启用或禁用选项、应用程序中的线程不安全代码以及多线程或多进程 Web 服务器,在程序完成或被终止后
多线程 Web 服务器 (Puma)
# Combination 1:
config.threadsafe! option : Disabled
Rack::Lock middleware : Available in app's middleware stack because of config.threadsafe! option disabled
With this combination the web server is successfully able to entertain all the 500 requests received.
This is because each request is augmented by Rack::Lock so as to execute it synchronously.In other words
Rack::Lock ensures we have only one concurrent request at a time.Thus each of the 500 requests gets a chance to
execute.
# Combination 2:
config.threadsafe! option : Enabled
Rack::Lock middleware : Unavailable in app's middleware stack because of config.threadsafe! option enabled
With this combination the web server is able to entertain only 200 out of 500 requests received.
This is because of the absence of Rack::Lock middleware, which ensures that we have only one concurrent request
at a time and thus each request gets a chance.
However there are advantages as well as disadvantages of each combination mentioned above:
# Combination 1
Advantage:
Each of the request received gets chance to be processed
Disadvantage:
* The runtime to process all of the 500 requests took 1 min 46 secs (compare it to runtime of Combination 2)
* Using a multi-threaded webserver is useless, if Rack::Lock remains available in middleware stack.
# Combination 2
Advantage:
The runtime to process 200 requests took 24 secs (compare it to runtime of Combination 1).
The reason being the multi-threaded nature of webserver is being leveraged in this case to entertain concurrent requests coming in.
Disadvantage:
* Not all 500 requests got a chance to be processed
注意:示例和运行时统计数据引用自 http://tenderlovemaking.com/2012/06/18/removing-config-threadsafe.html
多进程 Web 服务器 (Unicorn)
# Combination 1:
config.threadsafe! option : Disabled
Rack::Lock middleware : Available in app's middleware stack because of config.threadsafe! option disabled
Since multiple processes are forked by the webserver and each of them listens for requests and also
Rack::Lock middleware is available, the web server is successfully able to entertain all the 500 requests received.
# Combination 2:
config.threadsafe! option : Enabled
Rack::Lock middleware : Unavailable in app's middleware stack because of config.threadsafe! option enabled
Here too multiple processes are forked by the webserver and each of them listens for requests,
however Rack::Lock middleware is unavailable which enables multi-threading, which in turn means that we'll
get a race condition in the thread-unsafe code we have in the application.But strangely with this combination
too the web server is successfully able to entertain all the 500 requests received.
The reason being a process-based web server creates worker processes and each process holds one instance of
our application. When a request is received webserver spawns a child process for handling it.
结论:
在多进程环境中,如果我们保持 config.threadsafe,Rack::Lock 就会变得多余!选项已禁用。 这是因为在多进程环境中,套接字就是我们的锁,我们不需要任何额外的锁。 因此启用 config.threadsafe 是有好处的!并消除生产环境中的 Rack::Lock 开销。
在多线程环境中如果我们保持config.threadsafe!启用后,开发人员需要确保应用程序的代码是线程安全的。 以及保持 config.threadsafe 的优点!是处理传入请求所需的运行时间更少。
在我的应用程序上下文中,我们通过增加工作线程来调整 Puma 服务器的配置。希望性能有所提高。
关于ruby-on-rails-3 - Rails 应用程序因 Rack::Lock 而面临性能问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25646151/
我正在做一些中间件,在它到达 Rails 之前更改 authenticity_token 参数。 我可以看到 env.inspect 给出了 rack.request.form_vars 和 rack
我在带有 gem rack 1.3.2 和 1.2.1 的 debian 上安装了 passenger 3.0.9。 使用带有 passenger e bundler 的 rails 3.0 应用程序
我熟悉 Rails.root在 Rails 中,它会告诉您当前应用程序的目录。这有时非常方便。 现在我正在开发一个 Rack 应用程序(Rails 基于它)。我如何找到 Rails.root相当于 R
这个问题在这里已经有了答案: You have already activated X, but your Gemfile requires Y (12 个答案) 关闭 8 年前。 我有一个在 Dr
我想根据响应主体的大小有条件地启用 Rack::Deflater,如下所示: use Rack::Deflater, :if => lambda { |*, body| body.map(&:byte
我写了一段 Rack Middleware 来自动解压缩压缩的请求体。代码似乎工作正常,但是当我将它插入我的 Rails 应用程序时,我从 ActionController::ParamsParser
我想我在我的头上,无法弄清楚如何调试或从这里去哪里?!任何指导将不胜感激! 问题: 开发环境:一切正常 生产:我收到“请求超时”错误 目标: 让“www.site.com/blog”显示来自“blog
我有一个 Middleman我正在使用 Rack::TryStatic 服务的应用程序。 这是config.ru。 use Rack::TryStatic, root: 'build', ur
很抱歉,如果这个问题与另一个问题重复,但我还没有找到它。 我有一些 Grape API(它们是 Rack 应用程序),其中之一(用户 API)使用中间件进行身份验证。 在我的 config.ru 文件
如何在单个 Rack 应用程序中与多个 session cookie(针对不同的路径或域)进行交互? 例如,考虑以下使用 3 个位置的应用程序: www.my-app.net => 主应用 www.m
我目前有以下内容: use Rack::Rewrite use Rack::Cache, {:verbose=>true, :metastore=>"memcached://localhost:112
我有一个应用程序,它有一个包含静态文件的 htdocs 文件夹和位于 httpd/cgi-bin 文件夹中的几个 CGI 脚本。我如何使用带有 config.ru 的 Rack 来为这个应用程序提供服
给定一个非 Rails 的 Rack 应用程序, 构建器.rb: def app Rack::Builder.new{ use Rack::Static, urls:static_path
我试图完全理解 Rack 中并发请求处理的选项。我已经使用 async_sinatra 构建了一个长轮询应用程序,现在正在使用 throw :async 和/或 Thin 的 --threaded 标
我在使用 rSpec 的 Controller API 进行测试时遇到了很大的麻烦。现在我正在使用中间件身份验证解决方案 ( Warden ),当我运行规范时,中间件添加的代理不存在,所有身份验证测试
这是一个常见问题,但似乎没有一个答案能解决问题。我得到了通常的:You have already activated rack 1.4.1, but your Gemfile requires rac
当运行 rspec 以使用 Sinatra Base 测试功能测试时,我们收到以下错误。 这就是我们的功能测试的样子 require 'capybara/rspec' feature 'Ent
从 Selenium 切换到 PhantomJs/Poltergeist 时,我一直收到此错误。有人知道我做错了什么吗?如果我将驱动程序切换到 selenium,脚本将完美运行。每当我注释掉 defa
Rack::Session::Pool 有哪些不同的用例?和 Rack::Session::Cookie ? 据我了解(如果我错了请纠正我): Cookie 将 所有 session 键值对直接存储在
我正在处理 oauth 1.0(twitter 和 flickr)。网站工作在80端口,oauth服务器工作在8080端口 算法: 向oauth服务器发送ajax请求以检查用户是否有有效的access
我是一名优秀的程序员,十分优秀!