maxConnections.apiVersion: networking.istio.io/v1beta1kind: DestinationRulemetadata:name: nginxspec:host: nginxtrafficPolicy:connectionPool:tcp:maxConnections: 1
http1MaxPendingRequests field is not configured. If the field is not configured, the default value 2^32-1 is used, which is very large. This setting indicates that if the maximum number of connections is exceeded, the request will be queued first (503 will not be returned directly). When the number of connections falls below the maximum value, forwarding will continue.http1MaxPendingRequests.apiVersion: networking.istio.io/v1beta1kind: DestinationRulemetadata:name: nginxspec:host: nginxtrafficPolicy:connectionPool:tcp:maxConnections: 1http:http1MaxPendingRequests: 1
Feedback