How rails database connection pool works

2020-06-01 08:57发布

I am learning rails database connection pool concept. In rails application I have defined pool size of 5.

my understanding about connection pool size is as below.

  1. When server start rails automatically creates n number of connection defined in the database.yml file. In my case it will create 5 connection since pool size is 5.

  2. On every http request if there is need to access database then rails will use available connection from the connection pool to serve the request.

But my question is if I hit 1000 request at a time then most of the request will not get access to database connection because my connection pool size is only 5.

Is my above understanding about rails connection pool is right??

Thanks,

2条回答
该账号已被封号
2楼-- · 2020-06-01 09:08

This pool size is for a single process. Ofcourse, If your application is running on multiple processes, u will have 5 database connections for each of them. If your server is hit by 1000 requests concurrently, It will distribute the requests among these connections, when it gets full, rest of the requests wait for their turn.

查看更多
来,给爷笑一个
3楼-- · 2020-06-01 09:21

Yes, from the docs:

A connection pool synchronizes thread access to a limited number of database connections. The basic idea is that each thread checks out a database connection from the pool, uses that connection, and checks the connection back in. ConnectionPool is completely thread-safe, and will ensure that a connection cannot be used by two threads at the same time, as long as ConnectionPool's contract is correctly followed. It will also handle cases in which there are more threads than connections: if all connections have been checked out, and a thread tries to checkout a connection anyway, then ConnectionPool will wait until some other thread has checked in a connection.

source: http://api.rubyonrails.org/classes/ActiveRecord/ConnectionAdapters/ConnectionPool.html

If you use something like unicorn as http server:

In Unicorn each process establishes its own connection pool, so you if your db pool setting is 5 and you have 5 Unicorn workers then you can have up to 25 connections. However, since each unicorn worker can handle only one connection at a time, then unless your app uses threading internally each worker will only actually use one db connection.

查看更多
登录 后发表回答