disagg_router.sh 1.85 KB
Newer Older
Alec's avatar
Alec committed
1
2
3
4
5
6
#!/bin/bash
# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# 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
Yan Ru Pei's avatar
Yan Ru Pei committed
16
17
18
19
python -m dynamo.frontend \
    --router-mode kv \
    --http-port 8000 \
    --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
    --kv-events-config '{"publisher":"zmq","topic":"kv-events","endpoint":"tcp://*:20080"}'&
Alec's avatar
Alec committed
28

29
VLLM_NIXL_SIDE_CHANNEL_PORT=20097 \
Yan Ru Pei's avatar
Yan Ru Pei committed
30
31
32
CUDA_VISIBLE_DEVICES=1 python3 -m dynamo.vllm \
    --model $MODEL \
    --block-size $BLOCK_SIZE \
33
    --enforce-eager \
34
    --kv-events-config '{"publisher":"zmq","topic":"kv-events","endpoint":"tcp://*:20081"}' &
Alec's avatar
Alec committed
35

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

47
VLLM_NIXL_SIDE_CHANNEL_PORT=20099 \
Yan Ru Pei's avatar
Yan Ru Pei committed
48
49
50
CUDA_VISIBLE_DEVICES=3 python3 -m dynamo.vllm \
    --model $MODEL \
    --block-size $BLOCK_SIZE \
Alec's avatar
Alec committed
51
    --enforce-eager \
52
    --is-prefill-worker \
53
    --kv-events-config '{"publisher":"zmq","topic":"kv-events","endpoint":"tcp://*:20083"}'