disagg.sh 1.43 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

7
8
9
# Common configuration
MODEL="Qwen/Qwen3-0.6B"

10
11
12
SCRIPT_DIR="$(dirname "$(readlink -f "$0")")"
source "$SCRIPT_DIR/../../../common/launch_utils.sh"

13
HTTP_PORT="${DYN_HTTP_PORT:-8000}"
14
print_launch_banner "Launching Disaggregated Serving (2 GPUs)" "$MODEL" "$HTTP_PORT"
15

Alec's avatar
Alec committed
16
# run ingress
17
18
# dynamo.frontend accepts either --http-port flag or DYN_HTTP_PORT env var (defaults to 8000)
python -m dynamo.frontend &
Alec's avatar
Alec committed
19

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

28
DYN_SYSTEM_PORT=${DYN_SYSTEM_PORT2:-8082} \
29
VLLM_NIXL_SIDE_CHANNEL_PORT=20097 \
Alec's avatar
Alec committed
30
CUDA_VISIBLE_DEVICES=1 python3 -m dynamo.vllm \
31
    --model "$MODEL" \
Alec's avatar
Alec committed
32
    --enforce-eager \
33
    --disaggregation-mode prefill \
34
    --kv-transfer-config '{"kv_connector":"NixlConnector","kv_role":"kv_both"}' \
35
36
37
38
    --kv-events-config '{"publisher":"zmq","topic":"kv-events","endpoint":"tcp://*:20081","enable_kv_cache_events":true}' &

# Exit on first worker failure; kill 0 in the EXIT trap tears down the rest
wait_any_exit