代码之家  ›  专栏  ›  技术社区  ›  razenha

延迟作业的异常通知

  •  4
  • razenha  · 技术社区  · 14 年前

    对于延迟的作业是否有一个类似于异常通知的gem? 最好使用REE-1.8.7和Rails 2.3.10。

    2 回复  |  直到 12 年前
        1
  •  3
  •   heavysixer    14 年前

    我以前做过这样的事情来处理延迟的任务rake:

    require 'action_mailer'
    class ExceptionMailer < ActionMailer::Base
      def setup_mail
        @from = ExceptionNotifier.sender_address
        @sent_on = Time.now
        @content_type = "text/plain"
      end
    
      def exception_message(subject, message)
        setup_mail
        @subject = subject
        @recipients = ExceptionNotifier.exception_recipients
        @body = message
      end
    end
    
    namespace :jobs do
    desc "sync the local database with the remote CMS"
    task(:sync_cms => :environment) do
      Resort.sync_all!
      result = Delayed::Job.work_off
      unless result[1].zero?
        ExceptionMailer.deliver_exception_message("[SYNC CMS] Error syncing CMS id: #{Delayed::Job.last.id}", Delayed::Job.last.last_error)
      end
    end
    

    结束

        2
  •  2
  •   Roman    13 年前

    将此模块包含在要延迟的类中:

    
    require 'exception_notifier'
    module Delayed
      module ExceptionNotifier
        # Send error via exception notifier
        def error(job, e)
          env = {}
          env['exception_notifier.options'] = {
            :sections => %w(backtrace delayed_job),
            :email_prefix => '[Delayed Job ERROR] ',
            :exception_recipients => %w(some@email.com),
            :sender_address => %(other@email.com)
          }
          env['exception_notifier.exception_data'] = {:job => job}
          ::ExceptionNotifier::Notifier.exception_notification(env, e).deliver
        end
      end
    end
    

    
    Job name: <%= @job.name %>
    Job: <%= raw @job.inspect %>
    
    * Process: <%= raw $$ %>
    * Server : <%= raw `hostname -s`.chomp %>