debian-mirror-gitlab/config/initializers/sidekiq_cluster.rb

31 lines
917 B
Ruby
Raw Normal View History

2019-09-30 21:07:59 +05:30
# frozen_string_literal: true
2020-04-08 14:13:33 +05:30
if ENV['ENABLE_SIDEKIQ_CLUSTER']
2019-09-30 21:07:59 +05:30
Thread.new do
Thread.current.abort_on_exception = true
parent = Process.ppid
loop do
sleep(5)
# In cluster mode it's possible that the master process is SIGKILL'd. In
# this case the parent PID changes and we need to terminate ourselves.
if Process.ppid != parent
Process.kill(:TERM, Process.pid)
2020-04-22 19:07:51 +05:30
2020-10-24 23:57:45 +05:30
# Allow sidekiq to cleanly terminate and push any running jobs back
# into the queue. We use the configured timeout and add a small
# grace period
sleep(Sidekiq.options[:timeout] + 5)
2020-04-22 19:07:51 +05:30
# Signaling the Sidekiq Pgroup as KILL is not forwarded to
# a possible child process. In Sidekiq Cluster, all child Sidekiq
# processes are PGROUP leaders (each process has its own pgroup).
Process.kill(:KILL, 0)
2019-09-30 21:07:59 +05:30
break
end
end
end
end