Sha256: 5a41afc2376158149560fbf4d1c1afdc917ed7aa3e6a81c97ad322774581213a

Contents?: true

Size: 1.17 KB

Versions: 55

Compression:

Stored size: 1.17 KB

Contents

God.watch do |w|
  w.name   = "backburner-worker-1"
  w.dir    = '/path/to/app/dir'
  w.env = { 'PADRINO_ENV' => 'production', 'QUEUES' => 'newsletter-sender,push-message' }
  w.group    = 'backburner-workers'
  w.interval = 30.seconds
  w.start = "bundle exec rake -f Rakefile backburner:work"
  w.log   = "/var/log/god/backburner-worker-1.log"

  # restart if memory gets too high
  w.transition(:up, :restart) do |on|
    on.condition(:memory_usage) do |c|
      c.above = 50.megabytes
      c.times = 3
    end
  end

  # 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
end

Version data entries

55 entries across 55 versions & 2 rubygems

Version Path
backburner-allq-1.0.50 examples/god.rb
backburner-allq-1.0.49 examples/god.rb
backburner-allq-1.0.48 examples/god.rb
backburner-1.6.1 examples/god.rb
backburner-allq-1.0.47 examples/god.rb
backburner-allq-1.0.46 examples/god.rb
backburner-allq-1.0.45 examples/god.rb
backburner-allq-1.0.44 examples/god.rb
backburner-allq-1.0.40 examples/god.rb
backburner-allq-1.0.39 examples/god.rb
backburner-allq-1.0.38 examples/god.rb
backburner-allq-1.0.37 examples/god.rb
backburner-allq-1.0.36 examples/god.rb
backburner-1.6.0 examples/god.rb
backburner-allq-1.0.35 examples/god.rb
backburner-allq-1.0.34 examples/god.rb
backburner-allq-1.0.33 examples/god.rb
backburner-allq-1.0.32 examples/god.rb
backburner-allq-1.0.31 examples/god.rb
backburner-allq-1.0.29 examples/god.rb