Default maximumPoolSize for HikariCP

100,839

maximumPoolSize

Default: 10

HicariCP Documentation contains default properties: https://github.com/brettwooldridge/HikariCP

Read about Pool Size here: Maximum Connection Pool Size

Share:
100,839

Related videos on Youtube

Hari
Author by

Hari

Updated on March 07, 2020

Comments

  • Hari
    Hari about 4 years

    What is the default connection pool size that spring boot HikariCP provides when the container loads?

    of course, I am using below properties to setup max cp size, but I was wondering what is the default CP size if we don't give any number in the application.properties file.

    spring.datasource.hikari.minimumIdle=5
    spring.datasource.hikari.maximumPoolSize=20
    spring.datasource.hikari.idleTimeout=30000
    spring.datasource.hikari.poolName=SpringBootJPAHikariCP
    spring.datasource.hikari.maxLifetime=2000000
    spring.datasource.hikari.connectionTimeout=30000
    

    And if I give a max pool size in application.properties as 100 and I use only 20, will that affect my application performance?

  • Hari
    Hari about 5 years
    Thank you, and what is the maximum number of connection pools that HikariCP handles? is it based on JVM memory ?