码迷,mamicode.com
首页 > 编程语言 > 详细

spring cloud provider报“Error parsing HTTP request header”,feign端报“Read timed out“

时间:2018-06-20 21:28:52      阅读:1408      评论:0      收藏:0      [点我收藏+]

标签:client   adb   --   服务   ret   head   nios   def   evel   

这两天在调试spring cloud feign+hystrix报了如下错误:

spring cloud provider报“Error parsing HTTP request header”,feign端报“Read timed out“


provider报错信息:

2018-06-20 18:23:51,595 [http-nio-8086-exec-5] DEBUG org.apache.coyote.http11.Http11Processor:182 - Error parsing HTTP request header
java.io.EOFException: null
    at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1250)
    at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1190)
    at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:717)
    at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:366)
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:687)

 

feign报错信息:

Exception in thread "pool-10-thread-14" feign.RetryableException: Read timed out executing 

 

 

针对provider报错信息需要修改的配置如下:

server:
  port: 8087
  tomcat:
      max-http-header-size: 3145728    --这里

 

 

针对feign端报错信息需要调整的配置如下:

feign:
  client:
    default:
      #这里时间一定要调长,否则feign客户端会报ReadTimeOut  服务端报Error parsing HTTP request header
      connectTimeout: 60000
      readTimeout: 60000
      loggerLevel: basic

 

spring cloud provider报“Error parsing HTTP request header”,feign端报“Read timed out“

标签:client   adb   --   服务   ret   head   nios   def   evel   

原文地址:https://www.cnblogs.com/dbaxyx/p/9205378.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!