我希望ExceptionNotifier在延迟作业中发生异常时发送电子邮件,就像其他例外情况一样。我怎样才能做到这一点?
答案 0 :(得分:23)
我使用Rails 3.2.6,delayed_job 3.0.3和exception_notification 2.6.1 gem
执行此操作# In config/environments/production.rb or config/initializers/delayed_job.rb
# Optional but recommended for less future surprises.
# Fail at startup if method does not exist instead of later in a background job
[[ExceptionNotifier::Notifier, :background_exception_notification]].each do |object, method_name|
raise NoMethodError, "undefined method `#{method_name}' for #{object.inspect}" unless object.respond_to?(method_name, true)
end
# Chain delayed job's handle_failed_job method to do exception notification
Delayed::Worker.class_eval do
def handle_failed_job_with_notification(job, error)
handle_failed_job_without_notification(job, error)
# only actually send mail in production
if Rails.env.production?
# rescue if ExceptionNotifier fails for some reason
begin
ExceptionNotifier::Notifier.background_exception_notification(error)
rescue Exception => e
Rails.logger.error "ExceptionNotifier failed: #{e.class.name}: #{e.message}"
e.backtrace.each do |f|
Rails.logger.error " #{f}"
end
Rails.logger.flush
end
end
end
alias_method_chain :handle_failed_job, :notification
end
在所有环境中加载此代码以在捆绑更新之后捕获错误并在它们到达生产之前,这可能是一个好主意。我通过使用config/initializers/delayed_job.rb
文件执行此操作,但您可以复制每个config/environments/*
环境的代码。
另一个提示是将延迟的作业配置调整为默认值,当作业失败时,您可能会收到大量重复的异常邮件。
# In config/initializers/delayed_job_config.rb
Delayed::Worker.max_attempts = 3
更新我在delayed_job
守护程序默默退出时遇到了一些问题,原来是ExceptionNotifier
无法发送邮件而没有人救出该异常。现在代码拯救并记录它们。
答案 1 :(得分:5)
添加到@MattiasWadman答案,因为exception_notification 4.0 there's a new way to handle manual notify。所以而不是:
ExceptionNotifier::Notifier.background_exception_notification(error)
使用
ExceptionNotifier.notify_exception(error)
答案 2 :(得分:3)
处理异常的另一种方法(作为初始化器):
class DelayedErrorHandler < Delayed::Plugin
callbacks do |lifecycle|
lifecycle.around(:invoke_job) do |job, *args, &block|
begin
block.call(job, *args)
rescue Exception => e
# ...Process exception here...
raise e
end
end
end
end
Delayed::Worker.plugins << DelayedErrorHandler
答案 3 :(得分:2)
对于exception_notification 3.0.0更改:
ExceptionNotifier::Notifier.background_exception_notification(error)
为:
ExceptionNotifier::Notifier.background_exception_notification(error).deliver
答案 4 :(得分:2)
alias_method_chain
。
以下是使用Ruby 2 prepend
# In config/initializers/delayed_job.rb
module CustomFailedJob
def handle_failed_job(job, error)
super
ExceptionNotifier.notify_exception(error, data: {job: job})
end
end
class Delayed::Worker
prepend CustomFailedJob
end
答案 5 :(得分:0)
更简单,更新的答案:
# Chain delayed job's handle_failed_job method to do exception notification
Delayed::Worker.class_eval do
def handle_failed_job_with_notification job, error
handle_failed_job_without_notification job, error
ExceptionNotifier.notify_exception error,
data: {job: job, handler: job.handler} rescue nil
end
alias_method_chain :handle_failed_job, :notification
end
在控制台上测试:
Delayed::Job.enqueue (JS=Struct.new(:a){ def perform; raise 'here'; end }).new(1)