Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I get the error:

Error "ActiveRecord::ConnectionTimeoutError - could not obtain a database connection within 5 seconds.  The max pool size is currently 5; consider increasing it."

How do I increase the max pool size?

# DB CONNECTION
DB_CONN = ActiveRecord::Base.establish_connection(:adapter => "sqlite3", :dbfile => DB_FILE)
share|improve this question

1 Answer

up vote 19 down vote accepted
config/database.yml
pool: 8 (default is 5)

Read more

share|improve this answer
I don't have a config/database.yml DB_CONN = ActiveRecord::Base.establish_connection(:adapter => "sqlite3", :dbfile => DB_FILE). This is it. I tried adding pool: 25 to it, but it did not work. – Prakash Raman Oct 19 '10 at 8:00
1  
My mistake, it worked. I just added :pool => [int] Thanks. – Prakash Raman Oct 19 '10 at 9:34
@PrakashRaman I don't understand your comments. Where did you have to use the :pool => [int]? It seems Ruby code not YAML. – lulalala Mar 4 at 1:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.