Details
-
Improvement
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
1.14.0
-
None
-
Apache Drill version 1.14.0 running on CentOS 7.0.1406.
MySQL version 5.5.43 running on CentOS 6.4.
MySQL connector/j version 5.1.44.
Description
Currently JDBC storage plugin uses DBCP2 for the connection pooling, but it wouldn't validate the connection's still available or not, and it'd just spit the connection lost error.
We should be able to have a validationQuery option described here in Drill's JDBC storage plugin configuration.
NOTE
In DRILL-7639 BasicDataSource was replaced with Hikari, sourceParameters sections remains and allows to configure data source, Hikari related configuration properties should be used instead. List of Hikari properties: https://github.com/brettwooldridge/HikariCP.
connectionTestQuery should be used instead of validationQuery. Example of configuration:
{ "type": "jdbc", "driver": "org.postgresql.Driver", "url": "jdbc:postgresql://localhost:5959/my_db?defaultRowFetchSize=2", "username": "my_user", "password": "my_pass", "caseInsensitiveTableNames": false, "sourceParameters": { "connectionTestQuery": "select * from information_schema.collations" }, "enabled": true }
Attachments
Issue Links
- is part of
-
DRILL-7467 Jdbc plugin enhancements and fixes
- Resolved