fix(core): increase PostgreSQL and MySQL connection pool size

- PostgreSQL: 4 -> 10 connections
- MySQL: 3 -> 10 connections

Fixes #1516
This commit is contained in:
t8y2 2026-06-21 21:00:07 +08:00
parent fae644b888
commit 0d4e35ee02
2 changed files with 2 additions and 2 deletions

View File

@ -376,7 +376,7 @@ pub async fn connect_with_ca_cert(
ca_cert_path: Option<&str>,
fallback_timeout: Duration,
) -> Result<MySqlPool, String> {
connect_with_ca_cert_and_pool_limit(url, ca_cert_path, fallback_timeout, 3).await
connect_with_ca_cert_and_pool_limit(url, ca_cert_path, fallback_timeout, 10).await
}
pub async fn connect_with_ca_cert_and_pool_limit(

View File

@ -590,7 +590,7 @@ pub async fn connect(url: &str, fallback_timeout: Duration) -> Result<Pool, Stri
mgr_config,
);
let pool = Pool::builder(mgr)
.max_size(4)
.max_size(10)
.runtime(Runtime::Tokio1)
.wait_timeout(Some(timeout))
.build()