disagg_router.sh 2.22 KB
Newer Older
Alec's avatar
Alec committed
1
#!/bin/bash
2
# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
Alec's avatar
Alec committed
3
4
5
6
# SPDX-License-Identifier: Apache-2.0
set -e
trap 'echo Cleaning up...; kill 0' EXIT

Yan Ru Pei's avatar
Yan Ru Pei committed
7
8
9
10
11
12
13
# Set deterministic hash for KV event IDs
export PYTHONHASHSEED=0

# Common configuration
MODEL="Qwen/Qwen3-0.6B"
BLOCK_SIZE=64

14
15
# Start frontend with KV routing
# The frontend will automatically detect prefill workers and activate an internal prefill router
16
# dynamo.frontend accepts either --http-port flag or DYN_HTTP_PORT env var (defaults to 8000)
Yan Ru Pei's avatar
Yan Ru Pei committed
17
18
19
python -m dynamo.frontend \
    --router-mode kv \
    --router-reset-states &
Alec's avatar
Alec committed
20

Yan Ru Pei's avatar
Yan Ru Pei committed
21
# two decode workers
22
# --enforce-eager is added for quick deployment. for production use, need to remove this flag
Yan Ru Pei's avatar
Yan Ru Pei committed
23
24
25
CUDA_VISIBLE_DEVICES=0 python3 -m dynamo.vllm \
    --model $MODEL \
    --block-size $BLOCK_SIZE \
26
    --enforce-eager \
27
28
    --disaggregation-mode decode \
    --kv-transfer-config '{"kv_connector":"NixlConnector","kv_role":"kv_both"}' &
Alec's avatar
Alec committed
29

30
VLLM_NIXL_SIDE_CHANNEL_PORT=20097 \
Yan Ru Pei's avatar
Yan Ru Pei committed
31
32
33
CUDA_VISIBLE_DEVICES=1 python3 -m dynamo.vllm \
    --model $MODEL \
    --block-size $BLOCK_SIZE \
34
    --enforce-eager \
35
36
    --disaggregation-mode decode \
    --kv-transfer-config '{"kv_connector":"NixlConnector","kv_role":"kv_both"}' &
Alec's avatar
Alec committed
37

Yan Ru Pei's avatar
Yan Ru Pei committed
38
# two prefill workers
39
# When registered with --disaggregation-mode prefill, these workers are automatically detected
40
# by the frontend, which activates an internal prefill router for KV-aware prefill routing
41
VLLM_NIXL_SIDE_CHANNEL_PORT=20098 \
Alec's avatar
Alec committed
42
CUDA_VISIBLE_DEVICES=2 python3 -m dynamo.vllm \
Yan Ru Pei's avatar
Yan Ru Pei committed
43
44
45
    --model $MODEL \
    --block-size $BLOCK_SIZE \
    --enforce-eager \
46
    --disaggregation-mode prefill \
47
    --kv-transfer-config '{"kv_connector":"NixlConnector","kv_role":"kv_both"}' \
48
    --kv-events-config '{"publisher":"zmq","topic":"kv-events","endpoint":"tcp://*:20082","enable_kv_cache_events":true}'&
Yan Ru Pei's avatar
Yan Ru Pei committed
49

50
VLLM_NIXL_SIDE_CHANNEL_PORT=20099 \
Yan Ru Pei's avatar
Yan Ru Pei committed
51
52
53
CUDA_VISIBLE_DEVICES=3 python3 -m dynamo.vllm \
    --model $MODEL \
    --block-size $BLOCK_SIZE \
Alec's avatar
Alec committed
54
    --enforce-eager \
55
    --disaggregation-mode prefill \
56
    --kv-transfer-config '{"kv_connector":"NixlConnector","kv_role":"kv_both"}' \
57
    --kv-events-config '{"publisher":"zmq","topic":"kv-events","endpoint":"tcp://*:20083","enable_kv_cache_events":true}'