在Spring Cloud Gateway中是否可以为每个路由设置不同的超时值? 例如 / route1-30s / route2-20秒
答案 0 :(得分:0)
是的,我们可以通过为不同的路由定义不同的hystrix
命令来执行相同的操作。请考虑以下示例,其中route_1
的超时时间为15秒,因为此处hystrix
使用的default
命令的超时时间为15秒。
# ===========================================
# Timeout 15 seconds
- id: route_1
uri: ${test.uri}
predicates:
- Path=/timeout/**
filters:
- name: Hystrix
args:
name: default
fallbackUri: forward:/hystrixfallback
hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds: 15000
对于route_2
,现在使用的hystrix
命令为applicationTimeOut
,超时时间为5秒。
# ===========================================
# Timeout 5 seconds
- id: route_2
uri: ${test.uri}/count
predicates:
- Path=/count
filters:
- name: Hystrix
args:
name: applicationTimeOut
fallbackUri: forward:/hystrixfallback
hystrix.command.applicationTimeOut.execution.isolation.thread.timeoutInMilliseconds: 5000
对于route_3
,现在使用的hystrix
命令为apiTimeOut
,超时时间为2秒。
# ===========================================
# Timeout 2 seconds
- id: route_3
uri: ${test.uri}
predicates:
- Path=/event/**
filters:
- name: Hystrix
args:
name: apiTimeOut
fallbackUri: forward:/hystrixfallback
hystrix.command.apiTimeOut.execution.isolation.thread.timeoutInMilliseconds: 2000
答案 1 :(得分:0)
根据Spring Cloud Gateway文档,这要简单得多:
https://cloud.spring.io/spring-cloud-gateway/reference/html/#per-route-timeouts
因此,您可以配置每个路由的连接和读取超时,如下所示:
- id: per_route_timeouts
uri: https://example.org
predicates:
- name: Path
args:
pattern: /delay/{timeout}
metadata:
response-timeout: 200
connect-timeout: 200