spring cloud gateway单独设置某几个接口超时时间
前言在使用Spring cloud Gateway (scg)时,通过service name 全局匹配,路由到相应的服务。但是请求/响应超时怎么设置呢?Spring cloud Gateway 超时设置Spring cloud Gateway 可以为所有路由配置 Http 超时(响应和连接),并为每个特定路由覆盖。http全局超时设置connect-timeout 连接超时必须以毫秒为单位指定。
前言
在使用Spring cloud Gateway (scg)时,通过service name 全局匹配,路由到相应的服务。但是请求/响应超时怎么设置呢?
Spring cloud Gateway 超时设置
Spring cloud Gateway 可以为所有路由配置 Http 超时(响应和连接),并为每个特定路由覆盖。
http全局超时设置
connect-timeout
连接超时必须以毫秒为单位指定。response-timeout
响应超时必须指定为 java.time.Duration
spring:
cloud:
gateway:
httpclient:
connect-timeout: 200
response-timeout: 10s
然而,有些比较特殊接口,200ms是没法满足需求的,比如一个大文件上传或下载,都会超过200ms,那怎么配置才能对这些特殊接口做单独设置呢?
每个路由超时设置
配置每个路由超时:
- 连接超时必须以毫秒为单位指定。
- 必须以毫秒为单位指定响应超时。
每个路由http请求超时设置
- id: per_route_timeouts
uri: https://example.org
predicates:
- name: Path
args:
pattern: /delay/{timeout}
metadata:
response-timeout: 200
connect-timeout: 200
以上,来自官方docs.spring.io/spring-cloud-gateway,然而,人有祸兮旦福,照抄有问题····
问题/需求描述
现在有2个服务,A-service、B-service,这2个服务的普通接口的响应超时时间都是300ms内,但是A-service 中有文件上传、下载的接口,文件稍大,gatway 就会报超时(504),现在需要把这部分接口单独设置超时时间(别说把文件上传的服务拆出来单独一个服务,虽然问题可以解决,但是暂时没这个考虑),上代码:
routes:
- id: files_routes
uri: http://localhost:8080
predicates:
- Path=/A-service/community/upload/**
- Host=xx.xxxx.cn
metadata:
response-timeout: 300000
connect-timeout: 300000
- id: blockchain
uri: http://localhost:8080
predicates:
- Path=/A-service/**
- Host=xx.xxxxx.cn
metadata:
response-timeout: 2000
connect-timeout: 3000
filters:
- RewritePath=/A-service, /
- id: authorization
uri: http://localhost:8081
predicates:
- Path=/B-service/**
- Host=xx.xxxx.cn
metadata:
response-timeout: 2000
connect-timeout: 3000
filters:
- RewritePath=/B-service, /
OK,访问一下,第一次可以,再来一下,404~! 多试几次效果一样,那么就怀疑这个配置的命中顺序不是固定的,而是随机的,那得解决这个问题,找了一下官方资料,发现有个属性 order
可以指定优先级(顺序),把order
加上就好了。
总结
cgi 的配置文件是无序的,需要手动通过order
指定优先级。
更多推荐
所有评论(0)