GetConnectionTimeoutException:wait millis 30000, active 12,

org.springframework.transaction.CannotCreateTransactionException: Could not open JDBC 
Connection for transaction; nested exception is 
com.alibaba.druid.pool.GetConnectionTimeoutException: wait millis 30000, active 12, 
runningSqlCount 1 : 

Caused by: com.mysql.cj.exceptions.CJCommunicationsException: The last packet successfully received from the server was 83,820 milliseconds ago. The last packet sent successfully to the server was 83,822 milliseconds ago. is longer than the server configured value of 'wait_timeout'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property 'autoReconnect=true' to avoid this problem. 
<!-- 配置获取连接等待超时的时间 -->
		<property name="maxWait" value="${db.maxwait}" />
		
		<!-- 超过时间限制是否回收 -->  
		<property name="removeAbandoned" value="true" />  
		
		<!-- 超时时间;单位为秒。180秒=3分钟   -->
		<property name="removeAbandonedTimeout" value="1800" />  
		
		<!-- 关闭abanded连接时输出错误日志   -->
		<property name="logAbandoned" value="false" />  
		
		<!-- 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒 -->
		<property name="timeBetweenEvictionRunsMillis" value="10000" />
		
		<!-- 配置一个连接在池中最小生存的时间,单位是毫秒 -->
		<property name="minEvictableIdleTimeMillis" value="30000" />
		
		<property name="validationQuery" value="SELECT 'x'" />
		<property name="testWhileIdle" value="true" />
		<property name="testOnBorrow" value="false" />
		<property name="testOnReturn" value="false" />
		
		<!-- 打开PSCache,并且指定每个连接上PSCache的大小 -->
		<property name="poolPreparedStatements" value="true" />
		<property name="maxPoolPreparedStatementPerConnectionSize" value="20" />

1.单个数据库最大连接数是200, 服务器是两台,每个都是200,改成了80
2. 改了数据库 waittimeout =60 3.改了 removeAbandonedTimeout 为45, timeBetweenEvictionRunsMillis 10的值 (两个加起来要小于 60)

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值