0

我们有一个到postgres配置有 的数据库的连接tomcat connection pool。问题是,当连接变为活动状态时,它永远不会回到空闲状态。

当我启动我的微服务时,它有 0 个活动连接和 10 个空闲连接。工作一小时后,有 7 个活动和 3 个空闲。周末之后有 100 个活动,达到了限制,服务下降了。

有什么方法可以配置tomcat connection pool来检查活动连接状态以及它们是否被卡住以关闭它们?

4

2 回答 2

1

看起来您的应用程序正在泄漏连接。默认情况下,hibernate c3p0 提供检测泄漏的工具,有两个参数需要配置:

5 对

在此之后,它将打印长时间活动连接的堆栈跟踪并关闭它们。

建议不要在高负载下使用。如果使用另一个池,搜索类似的东西

于 2018-05-21T10:58:37.850 回答
0

由于我们的集群内部有 http 超时,因此似乎存在连接泄漏。我进行了调查,连接始终保持活跃。

我的解决方案是启用废弃连接验证。

private DataSource configureDataSource(String url, String user, String password, String driverClassName){
    DataSource ds = DataSourceBuilder.create()
            .url(url)
            .username(user)
            .password(password)
            .driverClassName(driverClassName)
            .build();

    org.apache.tomcat.jdbc.pool.DataSource configuredDataSource = (org.apache.tomcat.jdbc.pool.DataSource) ds;

    // some other configurations here
    // ...

    configuredDataSource.getPoolProperties() 
           .setRemoveAbandonedTimeout(300);
    configuredDataSource.getPoolProperties()
           .setRemoveAbandoned(true);
}

@Bean(name = "qaDataSource")
public JdbcTemplate getQaJdbcTemplate()  {
    DataSource ds = configureDataSource(qaURL, qaUsername, qaPassword ,qaDriverClassName);
    return new JdbcTemplate(ds);
}

RemoveAbandonedRemoveAbandonedTimeout标志意味着如果某个连接处于活动状态,超过超时值,它将被关闭。如果你把它放到你的代码中,确保这个超时时间优于你的服务的最大查询执行时间。

于 2018-05-22T06:17:30.453 回答