10 releases (6 breaking)

0.7.0 Apr 14, 2024
0.6.0 Apr 13, 2024
0.5.0 Apr 12, 2024
0.4.0 Apr 12, 2024
0.1.2 Apr 4, 2024

#56 in Database implementations

Download history 355/week @ 2024-03-31 448/week @ 2024-04-07 205/week @ 2024-04-14

1,008 downloads per month

MIT license

23KB
442 lines

MariaDB connections are highly efficient. However, pooling on the client side still leaves too many idle hanging/lingering connections, because of bursts. A max pool size limit could help, but it's hard to know the best value (it requires knowing exact consistent performance characteristics) and leaves too much performance on the table or still results in lingering connections.

With a lot of workers (which we tend to have), even with just a handful of connections, it adds up to thousands of connections overall. This results in congestion: clients and sockets tend to timeout or fail to establish. This is made worse if most of the connections are idle.

With a centralised pool, worker requests interleave so connections are maximally/efficiently used and idle time is minimised. Bursts are lower and less frequent. An upper limit on the (global) pool size can represent a global optimum; on the other hand, limits at each worker represents a coordination problem, and one worker's idle connections can't be used by another, but constantly dropping and reestablishing isn't feasible either.

The HTTP/2 protocol is also much more lightweight and scalable than the MySQL protocol. With thousands of connections/requests per second, it's no problem for HTTP/2; connections can be started and stopped rapidly too.

Dependencies

~32–47MB
~874K SLoC