मैं गेंडा और साइडकीक चलाने वाले हरोकू ऐप के लिए R12 एक्जिट टाइमआउट त्रुटियां प्राप्त कर रहा हूं। ये त्रुटियां दिन में 1-2 बार होती हैं और जब भी मैं तैनात करता हूं। मैं समझता हूं कि मुझे सही ढंग से प्रतिक्रिया देने के लिए हरिकू से शटडाउन संकेतों को बदलने की आवश्यकता है, लेकिन यह सोचा कि मैंने नीचे गेंडा विन्यास में ऐसा किया है:
worker_processes 3
timeout 30
preload_app true
before_fork do |server, worker|
Signal.trap 'TERM' do
puts "Unicorn master intercepting TERM and sending myself QUIT instead. My PID is #{Process.pid}"
Process.kill 'QUIT', Process.pid
end
if defined?(ActiveRecord::Base)
ActiveRecord::Base.connection.disconnect!
Rails.logger.info('Disconnected from ActiveRecord')
end
end
after_fork do |server, worker|
Signal.trap 'TERM' do
puts "Unicorn worker intercepting TERM and doing nothing. Wait for master to sent QUIT. My PID is #{Process.pid}"
end
if defined?(ActiveRecord::Base)
ActiveRecord::Base.establish_connection
Rails.logger.info('Connected to ActiveRecord')
end
Sidekiq.configure_client do |config|
config.redis = { :size => 1 }
end
end
त्रुटि के आसपास मेरे लॉग इस तरह दिखते हैं:
Stopping all processes with SIGTERM
Unicorn worker intercepting TERM and doing nothing. Wait for master to sent QUIT. My PID is 7
Unicorn worker intercepting TERM and doing nothing. Wait for master to sent QUIT. My PID is 11
Unicorn worker intercepting TERM and doing nothing. Wait for master to sent QUIT. My PID is 15
Unicorn master intercepting TERM and sending myself QUIT instead. My PID is 2
Started GET "/manage"
reaped #<Process::Status: pid 11 exit 0> worker=1
reaped #<Process::Status: pid 7 exit 0> worker=0
reaped #<Process::Status: pid 15 exit 0> worker=2
master complete
Error R12 (Exit timeout) -> At least one process failed to exit within 10 seconds of SIGTERM
Stopping remaining processes with SIGKILL
Process exited with status 137
ऐसा प्रतीत होता है कि सभी बाल प्रक्रियाओं को समय समाप्त होने से पहले सफलतापूर्वक समाप्त कर दिया गया था। क्या यह संभव है कि मास्टर अभी भी जीवित है? इसके अलावा, क्या राउटर को अभी भी शयन के दौरान डायनो को वेब अनुरोध भेजना चाहिए, जैसा कि लॉग में दिखाया गया है?
FWIW, मैं हेरोकू के शून्य डाउनटाइम तैनाती प्लगइन ( https://devcenter.heroku.com/articles/labs-preboot/ ) का उपयोग कर रहा हूं ।