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

Hello, I have this hikari configuration ``` logging.level.com.zaxxer.hikari.HikariConfig=DEBUG logging.level.com.zaxxer.hikari=TRACE spring.datasource.hikari.maximumPoolSize=60 spring.datasource.hikari.minimumIdle=5 spring.datasource.hikari.idleTimeout=900000 spring.datasource.hikari.leakDetectionThreshold=300000 ``` And I'm using SpringBoot 3 for this, I have a repository and few DAO's and DTO's....

### Description According to the documentation, connections that were in use during a soft eviction, are effectively evicted when returned to the pool. See Javadoc of `com.zaxxer.hikari.HikariPoolMXBean.softEvictConnections` > Evict currently...

I am using HikariCP in tomcat but unable to configure AES Encryption in Connection pool configuration In traditional tomcat DBCP configuration this can be achieved with connection properties ` connectionProperties="oracle.net.encryption_client=REQUESTED"/>`...

**Description** This PR removes the final modifier from the generated proxy classes, allowing clients code to extend them. This PR relates to some changes made here: https://github.com/brettwooldridge/HikariCP/pull/1661 where a small...

Addresses https://github.com/brettwooldridge/HikariCP/issues/2142

I am running the spring application which is handling the background jobs through schedulers. I am using AWS RDS Proxy through IAM Authentication. I just override the getPassword() method by...

background: I try to integrate hikari with clickhouse-jdbc. ![Screenshot2023_11_01_145233](https://github.com/brettwooldridge/HikariCP/assets/35856569/676f4a5a-24e3-44b2-b088-2609d376383c) when I invoke dataSource.close(); I got an error `java.util.concurrent.RejectedExecutionException: Task com.clickhouse.jdbc.internal.ClickHouseConnectionImpl$$Lambda$1769/0x0000000800dbd840@4dd95dfd rejected from java.util.concurrent.ThreadPoolExecutor@165a9184[Terminated, pool size = 0, active threads =...

When HikariCP returns a connection to the pool, it calls `resetConnectionState` [method](https://github.com/brettwooldridge/HikariCP/blob/HikariCP-5.1.0/src/main/java/com/zaxxer/hikari/pool/PoolBase.java#L205C13-L205C13), that will call `setSchema` if HikariCP is configured with a default schema and the schema was changed during...

I'm trying to create a new DataSource by importing the properties file as explain [here](https://github.com/brettwooldridge/HikariCP#rocket-initialization) and [here](#https://www.baeldung.com/hikaricp#1-creating-a-datasource). ![image](https://github.com/brettwooldridge/HikariCP/assets/120016875/42293fc1-9ef0-409f-a1e6-ddf5aaf66d90) I have created my _dataSource.properties_ file and put it under the **src/main/resources**...