Skip to content

Commit

Permalink
[spring] Bring back the connection pool size to 256
Browse files Browse the repository at this point in the history
Due to some performance regressions detected on the
continuous benchmarking results.
  • Loading branch information
sdeleuze committed Nov 26, 2024
1 parent c0164be commit 3b14e04
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spring:
password: ${database.password}
url: r2dbc:postgresql://${database.host}:${database.port}/${database.name}?loggerLevel=OFF&disableColumnSanitiser=true&assumeMinServerVersion=16&sslmode=disable
pool:
max-size: 512
max-size: 256

---
spring:
Expand Down
2 changes: 1 addition & 1 deletion frameworks/Java/spring/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spring:
username: ${database.username}
password: ${database.password}
hikari:
maximum-pool-size: 512
maximum-pool-size: 256
database:
name: hello_world
host: tfb-database
Expand Down

0 comments on commit 3b14e04

Please sign in to comment.