5

遅延ジョブの完了率を表示するソリューションに取り組んでいます (delayed_job gem を使用)。現在、delayed_jobs テーブルに対して次のようなデータベース移行があります。

class CreateDelayedJobs < ActiveRecord::Migration
  def self.up
    create_table :delayed_jobs, :force => true do |table|
      table.integer  :priority, :default => 0      # Allows some jobs to jump to the front of the queue
      table.integer  :attempts, :default => 0      # Provides for retries, but still fail eventually.
      table.text     :handler                      # YAML-encoded string of the object that will do work
      table.text     :last_error                   # reason for last failure (See Note below)
      table.datetime :run_at                       # When to run. Could be Time.zone.now for immediately, or sometime in the future.
      table.datetime :locked_at                    # Set when a client is working on this object
      table.datetime :failed_at                    # Set when all retries have failed (actually, by default, the record is deleted instead)
      table.string   :locked_by                    # Who is working on this object (if locked)
      table.string   :queue                        # The name of the queue this job is in
      table.integer  :progress
      table.timestamps

    end

    add_index :delayed_jobs, [:priority, :run_at], :name => 'delayed_jobs_priority'
  end

  def self.down
    drop_table :delayed_jobs
  end
end

遅延ジョブのコントローラー メソッド内でエンキュー プロセスを使用し、 lib/build_detail.rb 内のクラスを参照しています。

Delayed::Job.enqueue(BuildDetail.new(@object, @com))

lib/build_detail.rb ファイルは次のとおりです。

class BuildDetail < Struct.new(:object, :com)

  def perform
    total_count = object.person_ids.length
    progress_count = 0

    people = com.person object.person_ids do |abc|
      progress_count += abc.size
      Delayed::Job.current.update_attribute :progress, (progress_count/total_count)
    end
  end  

end

Delayed::Job.current が機能しません。この投稿で提案された Delayed::Job.current メソッドを見ましたが、このメソッドはメインのdelayed_jobs github プロジェクトには含まれていないようです。

現在のジョブに (実際のジョブ内から) アクセスして、ジョブがループするたびに進行状況フィールドを更新するにはどうすればよいですか?

4

2 に答える 2

0

遅れた仕事のクールな点の 1 つは、ここであなたを妨げていることでもあります。多数の遅延ジョブをキューに入れると、複数のインスタンスでワーカーを実行している場合、それらを並行して処理できます。たとえば、同じデータベースにアクセスするアプリのインスタンスをそれぞれ 10 台のマシンで実行すると、処理速度が 10 倍になります。そのため、複数の「現在の」ジョブが存在する可能性があります。一度に 1 つのジョブのみを実行するのは、少し特殊なケースです。

すべてのアクティブなジョブのステータスを確認する方法は次のとおりです。実行中のインスタンスが 1 つだけの場合、ジョブは 1 つしか返されないため、状況は次のようになります。

active_jobs = Delayed::Job.where("progress > 0")
progress_of_first_job = active_jobs.first.progress if active_jobs.present?
progress_of_all_jobs = active_jobs.map{|job| job.progress}

progress_of_first_job は、ジョブの 1 つの進行状況です (安全のために order 句を使用してください)。progress_of_all_jobs は、アクティブな各ジョブの進行状況の値の (空の可能性がある) 配列です。

于 2013-01-31T04:19:43.367 に答える