disagg_router.sh 2.99 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
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
HTTP_PORT="${DYN_HTTP_PORT:-8000}"
echo "=========================================="
echo "Launching Disaggregated + KV Routing (4 GPUs)"
echo "=========================================="
echo "Model:       $MODEL"
echo "Frontend:    http://localhost:$HTTP_PORT"
echo "=========================================="
echo ""
echo "Example test command:"
echo ""
echo "  curl http://localhost:${HTTP_PORT}/v1/chat/completions \\"
echo "    -H 'Content-Type: application/json' \\"
echo "    -d '{"
echo "      \"model\": \"${MODEL}\","
echo "      \"messages\": [{\"role\": \"user\", \"content\": \"Explain why Roger Federer is considered one of the greatest tennis players of all time\"}],"
echo "      \"max_tokens\": 32"
echo "    }'"
echo ""
echo "=========================================="

34
35
# Start frontend with KV routing
# The frontend will automatically detect prefill workers and activate an internal prefill router
36
# 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
37
38
39
python -m dynamo.frontend \
    --router-mode kv \
    --router-reset-states &
Alec's avatar
Alec committed
40

Yan Ru Pei's avatar
Yan Ru Pei committed
41
# two decode workers
42
# --enforce-eager is added for quick deployment. for production use, need to remove this flag
Yan Ru Pei's avatar
Yan Ru Pei committed
43
44
45
CUDA_VISIBLE_DEVICES=0 python3 -m dynamo.vllm \
    --model $MODEL \
    --block-size $BLOCK_SIZE \
46
    --enforce-eager \
47
48
    --disaggregation-mode decode \
    --kv-transfer-config '{"kv_connector":"NixlConnector","kv_role":"kv_both"}' &
Alec's avatar
Alec committed
49

50
VLLM_NIXL_SIDE_CHANNEL_PORT=20097 \
Yan Ru Pei's avatar
Yan Ru Pei committed
51
52
53
CUDA_VISIBLE_DEVICES=1 python3 -m dynamo.vllm \
    --model $MODEL \
    --block-size $BLOCK_SIZE \
54
    --enforce-eager \
55
56
    --disaggregation-mode decode \
    --kv-transfer-config '{"kv_connector":"NixlConnector","kv_role":"kv_both"}' &
Alec's avatar
Alec committed
57

Yan Ru Pei's avatar
Yan Ru Pei committed
58
# two prefill workers
59
# When registered with --disaggregation-mode prefill, these workers are automatically detected
60
# by the frontend, which activates an internal prefill router for KV-aware prefill routing
61
VLLM_NIXL_SIDE_CHANNEL_PORT=20098 \
Alec's avatar
Alec committed
62
CUDA_VISIBLE_DEVICES=2 python3 -m dynamo.vllm \
Yan Ru Pei's avatar
Yan Ru Pei committed
63
64
65
    --model $MODEL \
    --block-size $BLOCK_SIZE \
    --enforce-eager \
66
    --disaggregation-mode prefill \
67
    --kv-transfer-config '{"kv_connector":"NixlConnector","kv_role":"kv_both"}' \
68
    --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
69

70
VLLM_NIXL_SIDE_CHANNEL_PORT=20099 \
Yan Ru Pei's avatar
Yan Ru Pei committed
71
72
73
CUDA_VISIBLE_DEVICES=3 python3 -m dynamo.vllm \
    --model $MODEL \
    --block-size $BLOCK_SIZE \
Alec's avatar
Alec committed
74
    --enforce-eager \
75
    --disaggregation-mode prefill \
76
    --kv-transfer-config '{"kv_connector":"NixlConnector","kv_role":"kv_both"}' \
77
    --kv-events-config '{"publisher":"zmq","topic":"kv-events","endpoint":"tcp://*:20083","enable_kv_cache_events":true}'