fix(account): configure JDBC connection pool size to prevent exhaustion under load
Build & Test (NowChessSystems) TeamCity build finished

Default Agroal pool (max-size=20) exhausted under concurrent logins due to
bcrypt latency per request. Fixes NCS-87.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-21 11:06:33 +02:00
parent dcc5ce1195
commit 29072efbfb
@@ -76,6 +76,9 @@ nowchess:
password: ${DB_PASSWORD} password: ${DB_PASSWORD}
jdbc: jdbc:
url: ${DB_URL} url: ${DB_URL}
min-size: 10
max-size: 50
acquisition-timeout: 30
hibernate-orm: hibernate-orm:
schema-management: schema-management:
strategy: update strategy: update