SpringBoot连接超时导致502错误 Spring Boot连接超时导致502错误的实战案例
铁锚 人气:0想了解Spring Boot连接超时导致502错误的实战案例的相关内容吗,铁锚在本文为您仔细讲解SpringBoot连接超时导致502错误的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:springboot超时设置,springboot设置响应超时,springboot连接超时,下面大家一起来学习吧。
1.问题描述
内部系统之间通过Nginx来实现路由转发。
但最近发现有一个系统,经常报502错误,每天达到上百次,完全无法忍受。
2. 原因排查
于是进行排查, 发现配置人员把连接超时时间(server.tomcat.connection-timeout)的单位,理解为秒,实际上是毫秒。
SpringBoot的部分配置如下:
# Tomcat server: tomcat: uri-encoding: UTF-8 max-threads: 1000 min-spare-threads: 30 connection-timeout: 60 # 错误在这里 port: 18080 servlet: context-path: / max-http-header-size: 102400
原来配置的值为 60,如果建立客户端连接的过程中,恰好碰到GC,并且加上GC的暂停时间总共达到60ms以上,Tomcat一看,超时了,就会导致建立连接失败,然后Nginx给客户端返回502错误。
3. 解决办法
修改连接超时时间,例如修改为【server.tomcat.connection-timeout=6000】, 如下所示:
# Tomcat server: tomcat: uri-encoding: UTF-8 max-threads: 1000 min-spare-threads: 30 connection-timeout: 6000 port: 18080 servlet: context-path: / max-http-header-size: 102400
问题解决。
当然,502错误也不止这个原因,需要排查Nginx链路。
总结
加载全部内容