vllm-setup.md 8.32 KB
Newer Older
Ryan Olson's avatar
Ryan Olson committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!--
SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
SPDX-License-Identifier: Apache-2.0

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->

# Running KVBM in vLLM

20
This guide explains how to leverage KVBM (KV Block Manager) to manage KV cache and do KV offloading in vLLM.
Ryan Olson's avatar
Ryan Olson committed
21

22
To learn what KVBM is, please check [here](kvbm_architecture.md)
Ryan Olson's avatar
Ryan Olson committed
23
24
25
26
27

## Quick Start

To use KVBM in vLLM, you can follow the steps below:

28
### Docker Setup
Ryan Olson's avatar
Ryan Olson committed
29
```bash
30
# Start up etcd for KVBM leader/worker registration and discovery
ZichengMa's avatar
ZichengMa committed
31
docker compose -f deploy/docker-compose.yml up -d
Ryan Olson's avatar
Ryan Olson committed
32

33
34
# Build a dynamo vLLM container (KVBM is built in by default)
./container/build.sh --framework vllm
Ryan Olson's avatar
Ryan Olson committed
35

36
# Launch the container
jthomson04's avatar
jthomson04 committed
37
./container/run.sh --framework vllm -it --mount-workspace --use-nixl-gds
38
```
Ryan Olson's avatar
Ryan Olson committed
39

40
41
### Aggregated Serving with KVBM
```bash
42
cd $DYNAMO_HOME/examples/backends/vllm
43
44
./launch/agg_kvbm.sh
```
Ryan Olson's avatar
Ryan Olson committed
45

46
### Disaggregated Serving with KVBM
47
```bash
48
# 1P1D - one prefill worker and one decode worker
49
# NOTE: need at least 2 GPUs
50
cd $DYNAMO_HOME/examples/backends/vllm
51
./launch/disagg_kvbm.sh
52
53
54

# 2P2D - two prefill workers and two decode workers
# NOTE: need at least 4 GPUs
55
cd $DYNAMO_HOME/examples/backends/vllm
56
./launch/disagg_kvbm_2p2d.sh
57
```
58

59
> [!NOTE]
60
> Configure or tune KVBM cache tiers (choose one of the following options):
61
62
63
64
65
66
67
68
69
70
71
> ```bash
> # Option 1: CPU cache only (GPU -> CPU offloading)
> # 4 means 4GB of pinned CPU memory would be used
> export DYN_KVBM_CPU_CACHE_GB=4
>
> # Option 2: Both CPU and Disk cache (GPU -> CPU -> Disk tiered offloading)
> export DYN_KVBM_CPU_CACHE_GB=4
> # 8 means 8GB of disk would be used
> export DYN_KVBM_DISK_CACHE_GB=8
>
> # [Experimental] Option 3: Disk cache only (GPU -> Disk direct offloading, bypassing CPU)
72
> # NOTE: this option is only experimental and it might not give out the best performance.
73
> # NOTE: disk offload filtering is not supported when using this option.
74
75
76
77
78
> export DYN_KVBM_DISK_CACHE_GB=8
> ```
>
> You can also use "DYN_KVBM_CPU_CACHE_OVERRIDE_NUM_BLOCKS" or
> "DYN_KVBM_DISK_CACHE_OVERRIDE_NUM_BLOCKS" to specify exact block counts instead of GB
Ryan Olson's avatar
Ryan Olson committed
79

80
81
82
83
84
> [!NOTE]
> When disk offloading is enabled, to extend SSD lifespan, disk offload filtering would be enabled by default. The current policy is only offloading KV blocks from CPU to disk if the blocks have frequency equal or more than `2`. Frequency is determined via doubling on cache hit (init with 1) and decrement by 1 on each time decay step.
>
> To disable disk offload filtering, set `DYN_KVBM_DISABLE_DISK_OFFLOAD_FILTER` to true or 1.

85
86
### Sample Request
```bash
87
# Make a request to verify vLLM with KVBM is started up correctly
88
# NOTE: change the model name if served with a different one
Ryan Olson's avatar
Ryan Olson committed
89
curl localhost:8000/v1/chat/completions   -H "Content-Type: application/json"   -d '{
90
    "model": "Qwen/Qwen3-0.6B",
Ryan Olson's avatar
Ryan Olson committed
91
92
93
94
95
96
97
    "messages": [
    {
        "role": "user",
        "content": "In the heart of Eldoria, an ancient land of boundless magic and mysterious creatures, lies the long-forgotten city of Aeloria. Once a beacon of knowledge and power, Aeloria was buried beneath the shifting sands of time, lost to the world for centuries. You are an intrepid explorer, known for your unparalleled curiosity and courage, who has stumbled upon an ancient map hinting at ests that Aeloria holds a secret so profound that it has the potential to reshape the very fabric of reality. Your journey will take you through treacherous deserts, enchanted forests, and across perilous mountain ranges. Your Task: Character Background: Develop a detailed background for your character. Describe their motivations for seeking out Aeloria, their skills and weaknesses, and any personal connections to the ancient city or its legends. Are they driven by a quest for knowledge, a search for lost familt clue is hidden."
    }
    ],
    "stream":false,
98
    "max_tokens": 10
Ryan Olson's avatar
Ryan Olson committed
99
100
  }'
```
101

102
Alternatively, can use `vllm serve` directly to use KVBM for aggregated serving:
103
```bash
Richard Huo's avatar
Richard Huo committed
104
vllm serve --kv-transfer-config '{"kv_connector":"DynamoConnector","kv_role":"kv_both", "kv_connector_module_path": "kvbm.vllm_integration.connector"}' Qwen/Qwen3-0.6B
105
106
```

107
108
109
110
111
## Enable and View KVBM Metrics

Follow below steps to enable metrics collection and view via Grafana dashboard:
```bash
# Start the basic services (etcd & natsd), along with Prometheus and Grafana
112
docker compose -f deploy/docker-observability.yml up -d
113

114
# Set env var DYN_KVBM_METRICS to true, when launch via dynamo
115
# Optionally set DYN_KVBM_METRICS_PORT to choose the /metrics port (default: 6880).
116
# NOTE: update launch/disagg_kvbm.sh or launch/disagg_kvbm_2p2d.sh as needed
117
DYN_KVBM_METRICS=true \
118
DYN_KVBM_CPU_CACHE_GB=20 \
119
python -m dynamo.vllm \
120
121
    --model Qwen/Qwen3-0.6B \
    --enforce-eager \
122
    --connector kvbm
123

124
# Optional, if firewall blocks KVBM metrics ports to send prometheus metrics
125
sudo ufw allow 6880/tcp
126
127
```

128
View grafana metrics via http://localhost:3000 (default login: dynamo/dynamo) and look for KVBM Dashboard
129

130
131
132
133
134
135
136
KVBM currently provides following types of metrics out of the box:
- `kvbm_matched_tokens`: The number of matched tokens
- `kvbm_offload_blocks_d2h`: The number of offload blocks from device to host
- `kvbm_offload_blocks_h2d`: The number of offload blocks from host to disk
- `kvbm_offload_blocks_d2d`: The number of offload blocks from device to disk (bypassing host memory)
- `kvbm_onboard_blocks_d2d`: The number of onboard blocks from disk to device
- `kvbm_onboard_blocks_h2d`: The number of onboard blocks from host to device
137
138
- `kvbm_host_cache_hit_rate`: Host cache hit rate (0.0-1.0) from sliding window
- `kvbm_disk_cache_hit_rate`: Disk cache hit rate (0.0-1.0) from sliding window
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162

## Troubleshooting

1. If enabling KVBM does not show any TTFT perf gain or even perf degradation, one potential reason is not enough prefix cache hit on KVBM to reuse offloaded KV blocks.
To confirm, please enable KVBM metrics as mentioned above and check the grafana dashboard `Onboard Blocks - Host to Device` and `Onboard Blocks - Disk to Device`.
If observed large number of onboarded KV blocks as the example below, we can rule out this cause:
![Grafana Example](kvbm_metrics_grafana.png)

2. Allocating large memory and disk storage can take some time and lead to KVBM worker initialization timeout.
To avoid it, please set a longer timeout (default 1800 seconds) for leader–worker initialization.

```bash
# 3600 means 3600 seconds timeout
export DYN_KVBM_LEADER_WORKER_INIT_TIMEOUT_SECS=3600
```

3. When offloading to disk is enabled, KVBM could fail to start up if fallocate is not supported to create the files.
To bypass the issue, please use disk zerofill fallback.

```bash
# Set to true to enable fallback behavior when disk operations fail (e.g. fallocate not available)
export DYN_KVBM_DISK_ZEROFILL_FALLBACK=true
```

163
164
## Benchmark KVBM

165
Once the model is loaded ready, follow below steps to use LMBenchmark to benchmark KVBM performance:
166
167
168
```bash
git clone https://github.com/LMCache/LMBenchmark.git

169
170
# Show case of running the synthetic multi-turn chat dataset.
# We are passing model, endpoint, output file prefix and qps to the sh script.
171
172
cd LMBenchmark/synthetic-multi-round-qa
./long_input_short_output_run.sh \
173
    "Qwen/Qwen3-0.6B" \
174
175
176
177
178
179
180
181
182
183
    "http://localhost:8000" \
    "benchmark_kvbm" \
    1

# Average TTFT and other perf numbers would be in the output from above cmd
```
More details about how to use LMBenchmark could be found [here](https://github.com/LMCache/LMBenchmark).

`NOTE`: if metrics are enabled as mentioned in the above section, you can observe KV offloading, and KV onboarding in the grafana dashboard.

184
To compare, you can run `vllm serve Qwen/Qwen3-0.6B` to turn KVBM off as the baseline.
185
186
187
188
189
190
191
192
193
194

## Developing Locally

Inside the Dynamo container, after changing KVBM related code (Rust and/or Python), to test or use it:
```bash
cd /workspace/lib/bindings/kvbm
uv pip install maturin[patchelf]
maturin build --release --out /workspace/dist
uv pip install --upgrade --force-reinstall --no-deps /workspace/dist/kvbm*.whl
```