failure in one part of your infrastructure cascading into other parts of your infrastructure? One approach is to use circuit breaking. https://www.envoyproxy.io/learn/circuit-breaking
1000 max_requests: 1000 - priority: HIGH max_connections: 2000 max_requests: 2000 u priority l how routes defined as DEFAULT or HIGH are treated by the circuit breaker. u max_connections l the maximum number of connections that Envoy will make to our service clusters. u max_requests l the maximum number of parallel requests that Envoy makes to our service clusters.
have different connection behaviors - one connection per request vs many requests per connection l For HTTP/1.1 connections, use max_connections. l For HTTP/2 connections, use max_requests.
determine whether an endpoint is healthy l Remove or Re-insert hosts using a time-out based approach consecutive_5xx: "3” base_ejection_time: "30s" l This configuration removes a host for 30 seconds when it returns 3 consecutive 5xx errors