fix: 数据源默认连接池设为50

This commit is contained in:
taojinlong
2025-11-18 11:18:18 +08:00
committed by taojinlong
parent b9c6f3c300
commit 17b4e03a38
3 changed files with 3 additions and 3 deletions

View File

@@ -149,7 +149,7 @@ const defaultInfo = {
username: '',
password: '',
extraParams: '',
initialPoolSize: 5,
initialPoolSize: 50,
minPoolSize: 50,
maxPoolSize: 100,
queryTimeout: 30

View File

@@ -156,7 +156,7 @@ const initForm = (type, pluginDsList, indexPlugin, isPluginDs) => {
host: '',
authMethod: '',
port: '',
initialPoolSize: 5,
initialPoolSize: 50,
minPoolSize: 50,
maxPoolSize: 100,
queryTimeout: 30

View File

@@ -35,7 +35,7 @@ public class Configuration {
private String charset;
private String targetCharset;
private String driver;
private int initialPoolSize = 5;
private int initialPoolSize = 50;
private int minPoolSize = 50;
private int maxPoolSize = 100;
private int queryTimeout = 30;