Skip to content

Commit

Permalink
sync analyze sh (#713)
Browse files Browse the repository at this point in the history
* Code Optimization

* Code Optimization

* Code Optimization

* Code Optimization

* fix miss code

* New interface: Retrieve data source list based on type name

* New interface: Retrieve data source list based on type name

* bug   fix

* bug   fix

* code  review fix

* code  review fix

* code  review fix

* code  review fix

* Security work order repair

* revent decimal fix

* ```优化MethodEntity序列化策略

``

* fix equalsIgnoreCase error

* fix kill engine error

* Optimize  code

* sync  analyze  sh

* 修正MyBatis数据源最大等待时间配置

将MyBatis数据源配置中,最大等待时间参数BDP_SERVER_MYBATIS_DATASOURCE_MAXWAIT的默认值从6000毫秒修改为60000毫秒,以修正数据源等待时间设置错误可能导致的连接问题。

---------

Co-authored-by: “v_kkhuang” <“420895376@qq.com”>
  • Loading branch information
v-kkhuang and “v_kkhuang” authored Jan 15, 2025
1 parent 7186259 commit 162e962
Show file tree
Hide file tree
Showing 4 changed files with 674 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public class MybatisConfiguration {
public static final CommonVars<Integer> BDP_SERVER_MYBATIS_DATASOURCE_MAXACTIVE =
CommonVars.apply("wds.linkis.server.mybatis.datasource.maxActive", 20);
public static final CommonVars<Integer> BDP_SERVER_MYBATIS_DATASOURCE_MAXWAIT =
CommonVars.apply("wds.linkis.server.mybatis.datasource.maxWait", 6000);
CommonVars.apply("wds.linkis.server.mybatis.datasource.maxWait", 60000);
public static final CommonVars<Integer> BDP_SERVER_MYBATIS_DATASOURCE_TBERM =
CommonVars.apply("wds.linkis.server.mybatis.datasource.timeBetweenEvictionRunsMillis", 60000);
public static final CommonVars<Integer> BDP_SERVER_MYBATIS_DATASOURCE_MEITM =
Expand Down
Loading

0 comments on commit 162e962

Please sign in to comment.