Skip to content

Commit dae5a79

Browse files
authored
[spring] Bring back the connection pool size to 256 (#9427)
Due to some performance regressions detected on the continuous benchmarking results.
1 parent a412644 commit dae5a79

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

frameworks/Java/spring-webflux/src/main/resources/application.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ spring:
1717
password: ${database.password}
1818
url: r2dbc:postgresql://${database.host}:${database.port}/${database.name}?loggerLevel=OFF&disableColumnSanitiser=true&assumeMinServerVersion=16&sslmode=disable
1919
pool:
20-
max-size: 512
20+
max-size: 256
2121

2222
---
2323
spring:

frameworks/Java/spring/src/main/resources/application.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spring:
1515
username: ${database.username}
1616
password: ${database.password}
1717
hikari:
18-
maximum-pool-size: 512
18+
maximum-pool-size: 256
1919
database:
2020
name: hello_world
2121
host: tfb-database

0 commit comments

Comments
 (0)