Error during filtering com.netflix.zuul.exception.ZuulException: Filter threw Exceptions错误解决
启动项目的微服务组件的时候,总是在微服务的网关那出现这个错误Error during filtering com.netflix.zuul.exception.ZuulException: Filter threw Exception查阅了网上资料:原因可能是有一些请求的请求时间太长,触发了熔断器导致。解决方案:在yml配置文件上加上即可,如果还是不行,把熔断时间、连接超时时间、通信超时时间都改大
·
启动项目的微服务组件的时候,总是在微服务的网关那出现这个错误
Error during filtering com.netflix.zuul.exception.ZuulException: Filter threw Exception
查阅了网上资料:原因可能是有一些请求的请求时间太长,触发了熔断器导致。
解决方案:在yml配置文件上加上即可,如果还是不行,把熔断时间、连接超时时间、通信超时时间都改大即可。
ribbon:
ConnectTimeot: 10000 # 连接超时时间(ms)
ReadTimeot: 10000 # 通信超时时间(ms)
OkToRertryOnAllOperations: ture # 是否对所有操作重试
MaxAutoRetriesNextServer: 1 #同一个服务不同实例的重试次数
MaxAutoRetries: 1 #同一实例的重试次数
hystrix:
command:
default:
execution:
isolation:
thread:
timeoutInMillisecond: 10000 #熔断超时时长 10000ms
更多推荐
已为社区贡献1条内容
所有评论(0)