我最近发现当我在我的 Rails 应用程序中遇到错误代码 500 时,我会出现内存膨胀(我运行了几个并且体验相同)。我发现使用 Scout 并且每次遇到 500 错误时都可以(几乎)看到内存泄漏的模式。下面是最近的例子:
尽管在图中似乎 exception_notification 没有太多内存分配,而是“中间件”有。我使用的唯一中间件(据我所知)是异常通知(gem '[exception_notification][2]'
v. 4.2.1),所以我认为它一定是它,只有我的解释是错误的。
亚历克西斯发表评论后编辑 - 我跑了:
Rails.configuration.middleware.each do |m|
puts "use #{m.inspect}"
end;0
它给出了关于中间件的以下输出:
use UTF8Cleaner::Middleware
use Rack::Sendfile
use ActionDispatch::Static
use #<ActiveSupport::Cache::Strategy::LocalCache::Middleware:0x0055f8e1dd5a60>
use Rack::Timeout
use Rack::Runtime
use Rack::MethodOverride
use ActionDispatch::RequestId
use Rails::Rack::Logger
use ActionDispatch::ShowExceptions
use ActionDispatch::DebugExceptions
use ActionDispatch::RemoteIp
use ActionDispatch::Callbacks
use ActiveRecord::ConnectionAdapters::ConnectionManagement
use Airbrake::Rack::Middleware
use ActiveRecord::QueryCache
use ActionDispatch::Cookies
use ActionDispatch::Session::CookieStore
use ActionDispatch::Flash
use ActionDispatch::ParamsParser
use Rack::Head
use Rack::ConditionalGet
use Rack::ETag
use ExceptionNotification::Rack
use Rakismet::Middleware
use ScoutApm::Middleware
其中 Airbrake 和 ScoutApm 将是唯一与错误相关的。
我的 production.rb 包含以下信息:
config.middleware.use ExceptionNotification::Rack, :email => {
:email_prefix => "[MyApp.se Exception] ",
:sender_address => %{"Exception Notifier" <support@myapp.se>},
:exception_recipients => %w{me@myapp.se}
}
# Taken from mailer.rb
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
:enable_starttls_auto => false,
:return_response => true,
:raise_delivery_errors => true,
:address => 'smtp.myapp.se',
:port => 587,
:domain => "myapp.se",
:user_name => 'mailer@myapp.se',
:password => ENV['MAILER_PWD'],
:authentication => 'plain'
}
由于上周我一直在进行一场记忆膨胀的大搜寻,我读过那封邮件至少曾经是一个令人担忧的原因,所以可能有一些关于这个的事情。
为什么会这样?我该如何解决它,或者至少进一步排除故障?它可能是任何其他 Rails 默认中间件吗?