【问题标题】:God Gem Starts a Watch if I use w.keepalive but not if I use $god sidekiq start如果我使用 w.keepalive,God Gem 会启动手表,但如果我使用 $god sidekiq start 则不会
【发布时间】:2013-01-22 17:52:10
【问题描述】:

我正在努力将SidekiqGod Gem 一起使用。我希望能够使用$god start sidekiq 手动启动sidekiq 进程,但是这无法启动该进程。如果我设置 w.keepalive(在下面的代码中注释掉),我只能让它启动 sidekiq 进程。

我正在使用:$ god -c "./config.god" -D --log-level info 启动 God,在前台启动 God,得到以下输出:

I [2013-01-22 17:46:00]  INFO: Started on drbunix:///tmp/god.17165.sock
I [2013-01-22 17:46:00]  INFO: sidekiq move 'unmonitored' to 'up'
I [2013-01-22 17:46:00]  INFO: sidekiq moved 'unmonitored' to 'up'

使用$god start sidekiq 我得到:

Sending 'start' command

The following watches were affected:
  sidekiq

但是我没有从上帝那里得到任何输出,没有任何东西写入sidekiq的日志,我可以清楚地看到使用$ ps auxwww | grep sidekiq没有启动sidekiq进程。

# config.god

PROJECT_ROOT = ENV['PROJECT_ROOT'] || File.dirname(__FILE__) # Dir containing this file

# Sidekiq Process

God.watch do |w|
  w.name = "sidekiq"
  w.group = "conversion"
  w.dir = PROJECT_ROOT
  w.interval = 20.seconds
  w.start_grace = 10.seconds
  w.restart_grace = 10.seconds
  w.behavior(:clean_pid_file)
  # w.keepalive
  w.start = "bundle exec sidekiq -v -C #{File.join(PROJECT_ROOT, 'config.yml')}"
  w.stop = "bundle exec sidekiqctl stop '/Users/me/.god/pids/sidekiq.pid' 5"

  w.log = File.join(PROJECT_ROOT, 'log/god_sidekiq.log')

end

【问题讨论】:

    标签: ruby-on-rails ruby process god sidekiq


    【解决方案1】:

    试试这个:

    # config.god
    
    PROJECT_ROOT = ENV['PROJECT_ROOT'] || File.dirname(__FILE__) # Dir containing this file
    
    # Sidekiq Process
    pid_file = '/Users/me/.god/pids/sidekiq.pid'
    God.watch do |w|
      w.name = "sidekiq"
      w.group = "conversion"
      w.dir = PROJECT_ROOT
      w.interval = 20.seconds
      w.start_grace = 10.seconds
      w.restart_grace = 10.seconds
      w.pid_file = pid_file
      w.behavior(:clean_pid_file)
    
      w.start = "cd #{PROJECT_ROOT}; bundle exec sidekiq -v -C #{File.join(PROJECT_ROOT, 'config.yml')} -P #{pid_file}&"
      w.stop = "cd #{PROJECT_ROOT}; bundle exec sidekiqctl stop #{pid_file} 5"
    
      w.log = File.join(PROJECT_ROOT, 'log/god_sidekiq.log')
    
      # 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
        end
    
        # failsafe
        on.condition(:tries) do |c|
          c.times = 5
          c.transition = :start
        end
      end
    
      # start if process is not running
      w.transition(:up, :start) do |on|
        on.condition(:process_exits)
      end
    
      # lifecycle
      w.lifecycle do |on|
        on.condition(:flapping) do |c|
          c.to_state = [:start, :restart]
          c.times = 5
          c.within = 5.minute
          c.transition = :unmonitored
          c.retry_in = 10.minutes
          c.retry_times = 5
          c.retry_within = 2.hours
        end
      end
    end
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2012-06-03
      • 2013-05-13
      • 1970-01-01
      • 2013-10-28
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多