aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/configuring.md
diff options
context:
space:
mode:
authorGaurish Sharma <contact@gaurishsharma.com>2013-06-02 18:24:07 +0530
committerGaurish Sharma <contact@gaurishsharma.com>2013-09-22 18:13:09 +0530
commit73b6095e13ef6be47fcabd65fcdd9c814bb9b375 (patch)
tree5fb6a47221929b1b4cacf1120e6f8de91286e119 /guides/source/configuring.md
parent80008352675add5a6b4aaded715fc02329a02004 (diff)
downloadrails-73b6095e13ef6be47fcabd65fcdd9c814bb9b375.tar.gz
rails-73b6095e13ef6be47fcabd65fcdd9c814bb9b375.tar.bz2
rails-73b6095e13ef6be47fcabd65fcdd9c814bb9b375.zip
Add notes about database connection pool [ci skip]
Diffstat (limited to 'guides/source/configuring.md')
-rw-r--r--guides/source/configuring.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md
index 5f170474ee..c499cd0727 100644
--- a/guides/source/configuring.md
+++ b/guides/source/configuring.md
@@ -759,4 +759,15 @@ Since the connection pooling is handled inside of Active Record by default, all
Any one request will check out a connection the first time it requires access to the database, after which it will check the connection back in, at the end of the request, meaning that the additional connection slot will be available again for the next request in the queue.
+If you try to use more connections than are available, Active Record will block
+and wait for a connection from the pool. When it cannot get connection, a timeout
+error similar to given below will be thrown.
+
+```ruby
+ActiveRecord::ConnectionTimeoutError - could not obtain a database connection within 5 seconds. The max pool size is currently 5; consider increasing it:
+```
+
+If you get the above error, you might want to increase the size of connection
+pool by incrementing the `pool` option in `database.yml`
+
NOTE. If you have enabled `Rails.threadsafe!` mode then there could be a chance that several threads may be accessing multiple connections simultaneously. So depending on your current request load, you could very well have multiple threads contending for a limited amount of connections.