LoginSignup
0
1

More than 5 years have passed since last update.

RailsアプリケーションでPostgreSQLへの問い合わせにTimeOutを設定する

Posted at

RailsアプリでPostgreSQLを使用する場合のDBからのレスポンスが遅ければキャンセルする設定

database.yml
defaults: &default
  adapter: postgresql
  encoding: unicode
  pool: 5
  # DBのレスポンスが指定したms以上返ってこない場合にエラーを出力してリクエストをキャンセル
  variables:
    statement_timeout: 5000

#=> ActiveRecord::StatementInvalid: PG::QueryCanceled: ERROR:  ステートメントのタイムアウトによりステートメントをキャンセルしています
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1