Skip to content

Commit

Permalink
Configure HikariCP datasource properties
Browse files Browse the repository at this point in the history
#deploy-testnav-ident-pool

Added HikariCP datasource configuration with minimum idle connections set to 10 and maximum pool size set to 100 to improve database connection management. This change is intended to optimize performance and resource utilization.
  • Loading branch information
krharum committed Oct 9, 2024
1 parent 029baed commit 24002d6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions apps/testnav-ident-pool/src/main/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ spring:
default-schema: public
dialect: org.hibernate.dialect.PostgreSQLDialect
showSql: true
datasource:
hikari:
minimum-idle: 10
maximum-pool-size: 100
security:
oauth2:
resourceserver:
Expand Down

0 comments on commit 24002d6

Please sign in to comment.