Skip to content

Commit 65c48fc

Browse files
committed
feat: add admin on envoy and increase timeout
Signed-off-by: bitliu <[email protected]>
1 parent 682bf9b commit 65c48fc

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

config/envoy.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,14 @@ static_resources:
6565
typed_config:
6666
"@type": type.googleapis.com/envoy.extensions.filters.http.router.v3.Router
6767
suppress_envoy_headers: true
68+
http2_protocol_options:
69+
max_concurrent_streams: 100
70+
initial_stream_window_size: 65536
71+
initial_connection_window_size: 1048576
72+
stream_idle_timeout: "300s"
73+
request_timeout: "300s"
74+
common_http_protocol_options:
75+
idle_timeout: "300s"
6876

6977
clusters:
7078
- name: extproc_service
@@ -93,6 +101,7 @@ static_resources:
93101
# Dynamic vLLM cluster using original destination
94102
- name: vllm_dynamic_cluster
95103
connect_timeout: 300s
104+
per_connection_buffer_limit_bytes: 52428800
96105
type: ORIGINAL_DST
97106
lb_policy: CLUSTER_PROVIDED
98107
original_dst_lb_config:
@@ -103,3 +112,9 @@ static_resources:
103112
"@type": type.googleapis.com/envoy.extensions.upstreams.http.v3.HttpProtocolOptions
104113
explicit_http_config:
105114
http_protocol_options: {}
115+
116+
admin:
117+
address:
118+
socket_address:
119+
address: "127.0.0.1"
120+
port_value: 19000

0 commit comments

Comments
 (0)