Skip to content

Instantly share code, notes, and snippets.

@benoittgt
Created February 26, 2025 09:19
Show Gist options
  • Save benoittgt/584da5fc5e455291f2b81e5d540b6ea1 to your computer and use it in GitHub Desktop.
Save benoittgt/584da5fc5e455291f2b81e5d540b6ea1 to your computer and use it in GitHub Desktop.
# To had if you want to understand why even with same max thread and connection pool size
# you still see "could not obtain a connection from the pool within 5.000 seconds"
class ActiveRecord::ConnectionAdapters::ConnectionPool::Queue
def wait_poll(timeout)
super(timeout)
rescue ActiveRecord::ConnectionTimeoutError => e
puts "listing #{Thread.list.count} threads:"
Thread.list.each_with_index do |t,i|
puts "---- thread #{i}: #{t.inspect}"
puts t.backtrace.take(5)
end
raise e
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment