From 7b3650c5c32a3acdc8b9c1a94df22ab16ce8139f Mon Sep 17 00:00:00 2001 From: "update-envoy[bot]" <135279899+update-envoy[bot]@users.noreply.github.com> Date: Wed, 30 Oct 2024 23:15:03 +0000 Subject: [PATCH] add OLM scaling for max_connection_duration (#36816) add OLM scaling for max_connection_duration This allows for configuring scaling the max connection duration in response to overload. Risk Level: low Testing: integration & unit tests Docs Changes: none Release Notes: in changelog --------- Signed-off-by: antoniovleonti Mirrored from https://github.com/envoyproxy/envoy @ ae4391145fb38487a3206e7b77c402d928857e7b --- envoy/config/overload/v3/overload.proto | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/envoy/config/overload/v3/overload.proto b/envoy/config/overload/v3/overload.proto index d3b8b01a..1f267c18 100644 --- a/envoy/config/overload/v3/overload.proto +++ b/envoy/config/overload/v3/overload.proto @@ -103,6 +103,12 @@ message ScaleTimersOverloadActionConfig { // This affects the value of // :ref:`FilterChain.transport_socket_connect_timeout `. TRANSPORT_SOCKET_CONNECT = 3; + + // Adjusts the max connection duration timer for downstream HTTP connections. + // This affects the value of + // :ref:`HttpConnectionManager.common_http_protocol_options.max_connection_duration + // `. + HTTP_DOWNSTREAM_CONNECTION_MAX = 4; } message ScaleTimer {