HikariCP icon indicating copy to clipboard operation
HikariCP copied to clipboard

光 HikariCP・A solid, high-performance, JDBC connection pool at last.

Results 241 HikariCP issues
Sort by recently updated
recently updated
newest added

Since Hikari is a library, it should not rely on synchronizing on any objects not within it's own scope, Interactions between code either more shallow or deeper in the stack...

bug
volunteer-needed

Fix: #2104 The objective of using synchronized was to avoid overlapping in the generation of HikariPool numbers, likely in sequential operations following a call to System.getProperties. However, synchronizing these operations...

Hi! We are using the AWS JDBC wrapper (https://github.com/awslabs/aws-advanced-jdbc-wrapper) together with HikariCP and want to override the exception class name (exceptionOverrideClassName). I can find references to this in the code...

### desc - version: 3.4.5 - config: ``` minIdle=2 maxPoolSize=25 connectionTimeout=5000 maxLifeTime=60000 idleTimeout=10000 ``` - jdbcUrl: ``` mysql://m1234.XXX.com.cn:1234?useUnicode=true&characterEncoding=UTF-8&rewriteBatchedStatements=true&cachePrepStmts=true&autoReconnect=true&useSSL=false ``` ### Java dump `HikariPool.connectionBag.sharedList ` ![image](https://github.com/brettwooldridge/HikariCP/assets/18238896/28ae4f65-c2fd-49f0-9f19-1a72173b4dc6) ### quetion The MySQL domain...

Add TRACE logs for get, recycle and close in HikariPool as well as for main methods of ProxyConnection to be able to debug and analyse DB connection management. We would...

Im thinking of a use case where I want to survive a writer node becoming a reader. I already have `connection-init-sql` validating this so newly created connections are ok. I...

Environment HikariCP version: 2.7.9 JDK version : 1.8.0_161-b14 Database : Oracle 11.2.0.4.0 - 64 bit Driver version : ojdbc6-11.2.0.3 Hikari getConnection method is executing slowly under load. In the same...

Hi, We use jmx to get stats of pool and now we change to jokokia and we cant get stats. # curl -sk http://127.0.0.1:19160/'jolokia/read/com.mchange.v2.c3p0:*' | python -m json.tool { "error":...

Hello Team, I use the AWS Secrets Manager JDBC Driver in the Spring Boot framework to get credentials (user, password) and connect to the DB. AWS Secrets Manager JDBC Library...