我们正在使用 Istio 1.11.2 并面临 Istio 重试的一些问题。
为了禁用自动重试,我们在 http 列表的对象中添加了以下块。但是,Istio 仍然会重试请求。
apiVersion: networking.istio.io/v1beta1
kind: VirtualService
metadata:
name: gateway
namespace: development
spec:
gateways:
- development/ingressgw
hosts:
- gateway.dev.rtm.com
http:
- match:
- uri:
prefix: /
retries:
attempts: 0
route:
- destination:
host: gateway.development.svc.cluster.local
port:
number: 443