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

This commit is contained in:
taojinlong
2025-11-11 11:32:59 +08:00
committed by taojinlong
parent 470f407451
commit 6be068905e
3 changed files with 6 additions and 6 deletions

View File

@@ -150,8 +150,8 @@ const defaultInfo = {
password: '',
extraParams: '',
initialPoolSize: 5,
minPoolSize: 5,
maxPoolSize: 5,
minPoolSize: 50,
maxPoolSize: 100,
queryTimeout: 30
},
syncSetting: null,

View File

@@ -157,8 +157,8 @@ const initForm = (type, pluginDsList, indexPlugin, isPluginDs) => {
authMethod: '',
port: '',
initialPoolSize: 5,
minPoolSize: 5,
maxPoolSize: 5,
minPoolSize: 50,
maxPoolSize: 100,
queryTimeout: 30
}
schemas.value = []

View File

@@ -36,8 +36,8 @@ public class Configuration {
private String targetCharset;
private String driver;
private int initialPoolSize = 5;
private int minPoolSize = 5;
private int maxPoolSize = 50;
private int minPoolSize = 50;
private int maxPoolSize = 100;
private int queryTimeout = 30;
private boolean useSSH = false;
private String sshHost;