17

sidekiq を再起動する正しい方法は何ですか。起動時にワーカーのコードをキャッシュしているように見えるので、ワーカーに変更を加えるたびに再起動する必要があります。私は Ctrl/C でこれを行っていますが、プロセスが終了してプロンプトに戻るまでに長い時間がかかります。

すぐに再起動を強制する方法はありますか?

POW経由で実行されているSinatraで最新バージョンを使用しています。

4

1 に答える 1

17

Sidekiq には、Sidekiq プロセスに関連付けられた PID を停止できるコマンド sidekiqctl が付属しています。PID ファイルと、すべてのスレッドが終了するまで待機する秒数を渡します。

サンプル使用法:

sidekiqctl stop #{rails_root}/tmp/pids/sidekiq_website_crawler.pid 60

ここで、60 はすべての Sidekiq スレッドの処理が完了するまで待機する秒数を表します。60 秒が経過し、すべてが完了していない場合、それらは自動的に殺されます。

God gem を使用して Sidekiq を監視、停止、開始、再起動することもお勧めします。

それができたら、 bundle exec god stop を使用してすべての sidekiq スレッドを停止できます。

例として、これが私の神ファイルです。

rails_env = ENV['RAILS_ENV'] || "development"
rails_root = ENV['RAILS_ROOT'] || "/home/hwc218/BuzzSumo"
 God.watch do |w|
     w.dir      = "#{rails_root}"
     w.name     = "website_crawler"
     w.interval = 30.seconds
     w.env      = {"RAILS_ENV" => rails_env}
     w.interval = 30.seconds
     w.start = "bundle exec sidekiq -C #{rails_root}/config/sidekiq_website_crawler.yml"
     w.stop = "sidekiqctl stop #{rails_root}/tmp/pids/sidekiq_website_crawler.pid 60"
     w.keepalive


    # determine the state on startup
     w.transition(:init, { true => :up, false => :start }) do |on|
    on.condition(:process_running) do |c|
      c.running = true
    end
    end

     # determine when process has finished starting
      w.transition([:start, :restart], :up) do |on|
      on.condition(:process_running) do |c|
      c.running = true
      c.interval = 5.seconds
    end

      # failsafe
       on.condition(:tries) do |c|
      c.times = 5
      c.transition = :start
      c.interval = 5.seconds
     end
    end

    # start if process is not running
     w.transition(:up, :start) do |on|
    on.condition(:process_running) do |c|
      c.running = false
    end
    end

    w.restart_if do |restart|
        restart.condition(:restart_file_touched) do |c|
          c.interval = 5.seconds
          c.restart_file = File.join(rails_root, 'tmp', 'restart.txt')
        end
    end
 end
于 2013-01-15T23:23:35.650 に答える