nginx+Rails+unicorn 環境下で タイムアウト値を設定
nginx + Rails + unicorn の環境で、レスポンスタイムが最大 120 秒の外部 API を実行した際、
Rails ( nginx ) からはタイムアウト ( 60秒 ) が返ってきているにもかかわらず、
実行された外部 API 側では処理されてしまうという現象が発生したので、タイムアウト値を設定した。
unicorn 側は、外部 API の 120 秒から余裕を持って 150 と設定
worker_processes 4
timeout 150
root = File.expand_path(File.dirname(__FILE__) + '/../')
listen '/tmp/hoge.sock'
pid '/tmp/hoge.pid'
stderr_path "#{root}/log/unicorn_error.log"
stdout_path "#{root}/log/unicorn.log"
nginx.conf
については、unicorn のタイムアウトから更に余裕を持って 160 とし、
下記ディレクティブを追加
proxy_read_timeout 160;
これで、アクセスすると、150 秒経つと、unicorn のタイムアウトが発生し、
502 Bad Gateway
が返ってくる
ちなみに、nginx 側のタイムアウトの場合は、504 Gateway Time-out
が返ってくる
後、外部 API 実行する処理の部分にも、TIME_OUT の処理も必要ですね。
Author And Source
この問題について(nginx+Rails+unicorn 環境下で タイムアウト値を設定), 我々は、より多くの情報をここで見つけました https://qiita.com/yutackall/items/e1d8bd8ebe8a992578e5著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .