Browse Source

Using Sidekiq concurrency for default db pool value (#26488)

Jaehong Kang 7 months ago
parent
commit
c73d5a6075
1 changed files with 1 additions and 1 deletions
  1. 1 1
      config/database.yml

+ 1 - 1
config/database.yml

@@ -1,6 +1,6 @@
 default: &default
   adapter: postgresql
-  pool: <%= ENV["DB_POOL"] || ENV['MAX_THREADS'] || 5 %>
+  pool: <%= ENV["DB_POOL"] || (if Sidekiq.server? then Sidekiq[:concurrency] else ENV['MAX_THREADS'] end) || 5 %>
   timeout: 5000
   connect_timeout: 15
   encoding: unicode