マルチプロセスサーバでのプロセス間コネクション共有問題
このコミットでプロセスごとにconnection_poolが管理されるようになったように見えます。
Rails4以降、Unicornなどのマルチプロセスサーバにおける以下の設定は必要なくなったのでしょうか?
after_fork do |server, worker|
# the following is *required* for Rails + "preload_app true",
defined?(ActiveRecord::Base) and
ActiveRecord::Base.establish_connection
end