mirror of
https://github.com/dataease/dataease.git
synced 2026-06-10 23:09:59 +08:00
fix: 数据源默认连接池设为50
This commit is contained in:
@@ -149,7 +149,7 @@ const defaultInfo = {
|
||||
username: '',
|
||||
password: '',
|
||||
extraParams: '',
|
||||
initialPoolSize: 5,
|
||||
initialPoolSize: 50,
|
||||
minPoolSize: 50,
|
||||
maxPoolSize: 100,
|
||||
queryTimeout: 30
|
||||
|
||||
@@ -156,7 +156,7 @@ const initForm = (type, pluginDsList, indexPlugin, isPluginDs) => {
|
||||
host: '',
|
||||
authMethod: '',
|
||||
port: '',
|
||||
initialPoolSize: 5,
|
||||
initialPoolSize: 50,
|
||||
minPoolSize: 50,
|
||||
maxPoolSize: 100,
|
||||
queryTimeout: 30
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user