DEV Community

Discussion on: Coding Sidekiq Workers the Right Way

Collapse
 
raphael_jambalos profile image
Raphael Jambalos

For our team, we make the connection pool size = concurrency so we don't have to think about the concurrency exhausting the DB connection pool. With this, we have to trade-off having high levels of concurrency for being sure that our DB connection pool won't get exhausted.

There's a whole debate on the Sidekiq repository about this: github.com/mperham/sidekiq/issues/...