Open dba9999 opened 2 years ago
Below is the hikari config my application team is using. We are seeing a 100's of logon/logoff events per min in the Oracle database. Could you please shed light on why we are seeing such behavior?
spring.datasource.driver-class-name=oracle.jdbc.driver.OracleDriver logging.level.com.zaxxer.hikari.HikariConfig=DEBUG spring.datasource.hikari.connection-timeout=2000 spring.datasource.hikari.maximum-pool-size=30 spring.datasource.hikari.pool-name=springHikariConnection spring.datasource.hikari.max-lifetime=1800000 spring.datasource.hikari.idle-timeout=1000 spring.datasource.hikari.allow-pool-suspension=true
idle-timeout=1000 means connection will be closed if not used in next 1 second.
idle-timeout=1000
Below is the hikari config my application team is using. We are seeing a 100's of logon/logoff events per min in the Oracle database. Could you please shed light on why we are seeing such behavior?
spring.datasource.driver-class-name=oracle.jdbc.driver.OracleDriver logging.level.com.zaxxer.hikari.HikariConfig=DEBUG spring.datasource.hikari.connection-timeout=2000 spring.datasource.hikari.maximum-pool-size=30 spring.datasource.hikari.pool-name=springHikariConnection spring.datasource.hikari.max-lifetime=1800000 spring.datasource.hikari.idle-timeout=1000 spring.datasource.hikari.allow-pool-suspension=true