Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
6306afa6
Unverified
Commit
6306afa6
authored
Jan 07, 2026
by
Ryan McCormick
Committed by
GitHub
Jan 07, 2026
Browse files
fix: Remove asymmetric --request-plane nats from run_engines.sh script (#5245)
parent
535528a5
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
benchmarks/router/README.md
benchmarks/router/README.md
+3
-0
benchmarks/router/run_engines.sh
benchmarks/router/run_engines.sh
+1
-2
No files found.
benchmarks/router/README.md
View file @
6306afa6
...
@@ -107,6 +107,9 @@ We also supports running lightweight mock engines that simulate vLLM behavior wi
...
@@ -107,6 +107,9 @@ We also supports running lightweight mock engines that simulate vLLM behavior wi
In a
**new terminal**
, launch the Dynamo router using the Python CLI:
In a
**new terminal**
, launch the Dynamo router using the Python CLI:
```
bash
```
bash
# Explicitly set NATS server for KV event publishing
export
NATS_SERVER
=
"
${
NATS_SERVER
:-
nats
://localhost:4222
}
"
python
-m
dynamo.frontend
\
python
-m
dynamo.frontend
\
--router-mode
kv
\
--router-mode
kv
\
--router-reset-states
\
--router-reset-states
\
...
...
benchmarks/router/run_engines.sh
View file @
6306afa6
...
@@ -251,7 +251,6 @@ else
...
@@ -251,7 +251,6 @@ else
VLLM_ARGS+
=(
"--is-decode-worker"
)
VLLM_ARGS+
=(
"--is-decode-worker"
)
fi
fi
VLLM_ARGS+
=(
"
${
EXTRA_ARGS
[@]
}
"
)
VLLM_ARGS+
=(
"
${
EXTRA_ARGS
[@]
}
"
)
VLLM_ARGS+
=(
"--request-plane"
"nats"
)
exec env
PYTHONHASHSEED
=
0
CUDA_VISIBLE_DEVICES
=
$GPU_DEVICES
DYN_VLLM_KV_EVENT_PORT
=
$((
20080
+
i
))
VLLM_NIXL_SIDE_CHANNEL_PORT
=
$((
20096
+
i
))
python3
-m
dynamo.vllm
\
exec env
PYTHONHASHSEED
=
0
CUDA_VISIBLE_DEVICES
=
$GPU_DEVICES
DYN_VLLM_KV_EVENT_PORT
=
$((
20080
+
i
))
VLLM_NIXL_SIDE_CHANNEL_PORT
=
$((
20096
+
i
))
python3
-m
dynamo.vllm
\
"
${
VLLM_ARGS
[@]
}
"
"
${
VLLM_ARGS
[@]
}
"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment