记录一下生产环境遇到的问题
生产上的一个程序跑了一段时间后,老是出现 Closed Connection异常,往上追溯错误,发现有关闭连接失败异常
该应用环境:
Oracle + Druid + Spirngboot 2.2.9.RELEASE
先搭建本地环境还原报错
主要是druid oracle springboot依赖
配置文件4.0.0 com.example demo10.0.1-SNAPSHOT demo1 Demo project for Spring Boot 1.8 2.2.9.RELEASE org.springframework.boot spring-boot-dependencies${spring.boot-version} pom import org.springframework.boot spring-boot-starter-weborg.springframework.boot spring-boot-starter-testtest com.alibaba druid-spring-boot-starter1.2.8 com.oracle ojdbc611.2.0.3 tk.mybatis mapper-spring-boot-starter2.1.5 org.projectlombok lombokorg.springframework.boot spring-boot-maven-plugin
#spring: # profiles: # active: test spring: datasource: driver-class-name: oracle.jdbc.OracleDriver username: test password: test url: jdbc:oracle:thin:@192.168.164.110:1521:helowin type: com.alibaba.druid.pool.DruidDataSource druid: initial-size: 10 max-active: 10 validationQuery: SELECt 1 FROM DUAL testWhileIdle: true testOnBorrow: false testOnReturn: false breakAfterAcquireFailure: true timeBetweenConnectErrorMillis: 30000 min-evictable-idle-time-millis: 30000 # 超过此时间关闭 除去最小空闲连接之外超过此时间的空闲连接 max-evictable-idle-time-millis: 50000 # 超过此时间关闭 除去所有的空闲连接 timeBetweenEvictionRunsMillis: 180000 # 监测空闲连接的时间间隔 min-idle: 4模拟程序
使用mybatis开发一个定时1s查询一次数据库的程序即可
package com.example.demo.controller; import com.example.demo.domain.User; import com.example.demo.mapper.UserMapper; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.scheduling.annotation.Scheduled; import org.springframework.web.bind.annotation.RestController; import java.util.List; @RestController @Slf4j public class TimerTestController { @Autowired UserMapper userMapper; @Scheduled(cron = "*/1 * * * * ?") public void test() { User user = new User(); user.setUserName("test"); List测试 猜想select = userMapper.select(user); log.info(select.toString()); } }
测试前先对报错原因进行猜想,首先从生产环境的报错位置:
#com.alibaba.druid.util.JdbcUtils$close(Connection x)方法
public static void close(Connection x) { if (x != null) { try { x.close(); } catch (Exception var2) { LOG.debug("close connection error", var2); } } }
此方法调用时机为关闭druid连接池种的连接时调用,此方法内部再调用Connection.Close方法关闭数据库连接
那么猜想出现此报错的原因是调用Connection.close方法时该数据库连接已关闭,是否是因为已关闭的连接再次调用Close方法导致的问题?
启动应用程序
观察日志,确认每次都查询正常
查看数据库连接数,发现与服务启动时初始化的druid连接数一致.
select sid, username, paddr, status,program,serial# from v$session t where username = 'TEST' and status = 'INACTIVE'杀死数据库连接
为了验证猜想,我们模拟数据库关闭连接,即直接杀掉jdbc连接
-- 生成杀session报文 select replace(wm_concat('alter system kill session '''||sid||','||serial#||''';'),',','') from v$session where username = 'TEST' and status = 'INACTIVE' and program = 'JDBC Thin Client' -- 执行杀死开启的数据库连接观察应用日志 总结
经过分析,可以得出结论,出现该异常的原因是:
连接池中初始化了大量的空闲连接,这些连接在一段时间后,超过了数据库的连接超时时间,此时数据库就会单方面关闭这些连接,但是应用中连接池中的连接并没有关闭,等到有新的请求到达,从连接池中获取连接时,该连接其实已经被数据库关闭,此时就会出现该错误
或者,druid每隔一段时间,就会对连接池中的连接进行有效性检查,如果该连接超过了配置的空闲连接时间,就会调用JdbcUtils.close()方法,但是该连接已经被数据库关闭了,此时就会报错 closed connection
跟此次问题相关的druid连接池配置详解
min-evictable-idle-time-millis: 30000 # 超过此时间关闭 除去最小空闲连接之外超过此时间的空闲连接 max-evictable-idle-time-millis: 50000 # 超过此时间关闭 除去所有的空闲连接 timeBetweenEvictionRunsMillis: 180000 # 监测空闲连接的时间间隔解决办法
复现了问题,来记录下解决办法
- 调整oracle数据库的超时连接配置,配置为无限制
- oracle数据库修改用户profiles的idle_time mysql数据库修改数据库配置 wait_time
- 修改druid连接池配置
- 调低 timeBetweenEvictionRunsMillis 扫描间隔, 这意味着druid会更频繁的扫描连接池中的无效连接
- 调低 min-evictable-idle-time-millis/max-evictable-idle-time-millis 这意味着连接池中的空闲连接在更短的时间内就会被关闭
建议采取第二种方式,原则如下:
timeBetweenEvictionRunsMillis + min-evictable-idle-time-millis < 数据库连接超时时间
max-evictable-idle-time-millis 可以配置的跟 min-evictable-idle-time-millis 一致
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)