Browse Source

[spring] Bring back the connection pool size to 256 (#9427)

Due to some performance regressions detected on the
continuous benchmarking results.
Sébastien Deleuze 8 months ago
parent
commit
dae5a79657

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

@@ -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:

+ 1 - 1
frameworks/Java/spring/src/main/resources/application.yml

@@ -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