Created
February 26, 2025 09:19
-
-
Save benoittgt/584da5fc5e455291f2b81e5d540b6ea1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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