From 05261bfcb38d11861df9cebf50f8b1fe3bcdba78 Mon Sep 17 00:00:00 2001 From: Taishi Kasuga Date: Fri, 10 Oct 2025 21:19:43 +0900 Subject: [PATCH 1/2] ci: bump envoy version --- compose.latency.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose.latency.yaml b/compose.latency.yaml index 1ccfeb6e..dca2c5a5 100644 --- a/compose.latency.yaml +++ b/compose.latency.yaml @@ -102,7 +102,7 @@ services: node9: condition: service_healthy envoy: - image: envoyproxy/envoy:v1.23.1 + image: envoyproxy/envoy:v1.35.3 restart: "${RESTART_POLICY:-always}" ports: - "3000:10000" From 9e906b1a3b5656a04a4a121cb39c9b748f05ba0f Mon Sep 17 00:00:00 2001 From: Taishi Kasuga Date: Sat, 11 Oct 2025 09:14:58 +0900 Subject: [PATCH 2/2] fix --- compose.latency.yaml | 6 ++++++ test/proxy/envoy.yaml | 14 ++++++++------ 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/compose.latency.yaml b/compose.latency.yaml index dca2c5a5..761e8852 100644 --- a/compose.latency.yaml +++ b/compose.latency.yaml @@ -104,6 +104,12 @@ services: envoy: image: envoyproxy/envoy:v1.35.3 restart: "${RESTART_POLICY:-always}" + command: + - envoy + - -c + - /etc/envoy/envoy.yaml + - -l + - warn ports: - "3000:10000" - "7000:10001" diff --git a/test/proxy/envoy.yaml b/test/proxy/envoy.yaml index 3c4d2225..a39e83e8 100644 --- a/test/proxy/envoy.yaml +++ b/test/proxy/envoy.yaml @@ -26,6 +26,8 @@ static_resources: enable_hashtagging: true enable_redirection: true read_policy: PREFER_REPLICA + dns_cache_config: + name: redis prefix_routes: catch_all_route: cluster: redis @@ -48,9 +50,9 @@ static_resources: endpoints: - lb_endpoints: - endpoint: { address: { socket_address: { address: node1, port_value: 6379 } } } -layered_runtime: - layers: - - name: redis - static_layer: - overload: - global_downstream_max_connections: 100 +overload_manager: + resource_monitors: + - name: envoy.resource_monitors.global_downstream_max_connections + typed_config: + "@type": type.googleapis.com/envoy.extensions.resource_monitors.downstream_connections.v3.DownstreamConnectionsConfig + max_active_downstream_connections: 100