ฉันได้รับข้อผิดพลาด R12 Exit Timeout สำหรับแอป Heroku ที่ใช้งานยูนิคอร์นและไซด์คิค ข้อผิดพลาดเหล่านี้เกิดขึ้น 1-2 ครั้งต่อวันและเมื่อใดก็ตามที่ฉันปรับใช้ ฉันเข้าใจว่าฉันต้องแปลงสัญญาณการปิดเครื่องจาก Heroku เพื่อให้ยูนิคอร์นตอบสนองได้อย่างถูกต้อง แต่คิดว่าฉันได้ทำในการกำหนดค่ายูนิคอร์นด้านล่าง:
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
ดูเหมือนว่ากระบวนการย่อยทั้งหมดได้รับการเก็บเกี่ยวสำเร็จก่อนหมดเวลา เป็นไปได้ไหมอาจารย์ยังมีชีวิตอยู่? นอกจากนี้เราเตอร์ควรยังคงส่งคำขอเว็บไปยัง dyno ในระหว่างการปิดระบบดังที่แสดงในบันทึกหรือไม่
FWIW ฉันใช้ปลั๊กอินการปรับใช้การหยุดทำงานเป็นศูนย์ของ Heroku ( https://devcenter.heroku.com/articles/labs-preboot/ )