Istio 101 : - Loadbalancing, attempts and retries - DestinationRule, VirtualService - -
It also supports retries for failing pods and circuit breaking to reject requests for pods with a "degraded" service.
It also provides it with "pool ejection", which stops pods and removes them as a destination for the loadbalancer.
Below is an example of kubernetes without Istio:
- packet forwarding.
- routing.
- caching.
- loadbalancing.
Below is a basic "RANDOM" loadbalancing rules for our service:
Using a VirtualService, we could specify the "retry" parameter:
Comments
Post a Comment