Skip to content
Snippets Groups Projects
Unverified Commit dbd5b302 authored by Cam Saul's avatar Cam Saul Committed by GitHub
Browse files

test idle application DB connections async every 60 seconds (#11771)

parent da38d930
No related branches found
No related tags found
No related merge requests found
......@@ -216,13 +216,21 @@
;;; | CONNECTION POOLS & TRANSACTION STUFF |
;;; +----------------------------------------------------------------------------------------------------------------+
(defn- create-connection-pool! [spec]
(def ^:private application-db-connection-pool-props
"Options for c3p0 connection pool for the application DB. These are set in code instead of a properties file because
we use separate options for data warehouse DBs. See
https://www.mchange.com/projects/c3p0/#configuring_connection_testing for an overview of the options used
below (jump to the 'Simple advice on Connection testing' section.)"
{"idleConnectionTestPeriod" 60})
(defn- create-connection-pool! [jdbc-spec]
(db/set-default-quoting-style! (case (db-type)
:postgres :ansi
:h2 :h2
:mysql :mysql))
(db/set-default-db-connection! (connection-pool/connection-pool-spec spec))
(db/set-default-jdbc-options! {:read-columns db.jdbc-protocols/read-columns}))
(db/set-default-db-connection! (connection-pool/connection-pool-spec jdbc-spec application-db-connection-pool-props))
(db/set-default-jdbc-options! {:read-columns db.jdbc-protocols/read-columns})
nil)
;;; +----------------------------------------------------------------------------------------------------------------+
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment