Istio fault tolerance retries is not working

2/7/2020

I deployed the yaml file below, but I am getting a response in a very short time when member service is getting aborted with 500

kind: VirtualService
metadata:
  name: retry-member
spec:
  hosts:
  - member
  http:
  - fault:
      delay:
        percent: 50
        fixedDelay: 2s
      abort:
        httpStatus: 500
        percent: 50
    route:
    - destination:
        host: member
    retries:
      attempts: 10
      perTryTimeout: 1s
      retryOn: 5xx
-- Rahul Kumar
istio
kubernetes

0 Answers