vllm.v1.kv_offload.tiering.manager ¶
TieringOffloadingManager: Multi-tier KV cache offloading orchestrator.
This manager coordinates between a CPU primary tier (with direct GPU access) and zero or more secondary tiers (Storage, Network, etc.) to provide hierarchical KV cache offloading.
Key Design Principles: 1. Always offload to all tiers — When a block is stored to the primary tier, it is cascaded to ALL secondary tiers 2. Primary tier is the gateway — Secondary tiers cannot access GPU memory directly; all data flows through the CPU primary tier 3. Staged promotion — Blocks in secondary tiers must be promoted to the primary tier before GPU can access them 4. Transparent retry mechanism — Return None from lookup() to signal "data is being promoted, try later" 5. ref_cnt as eviction protection — primary.prepare_read() increments ref_cnt, protecting blocks from eviction until complete_read() is called
CPUPrimaryTierOffloadingManager ¶
Bases: CPUOffloadingManager
CPUOffloadingManager with a primary/secondary transfer interface.
The inherited prepare_store/complete_store/prepare_load/complete_load are the GPU-facing OffloadingManager interface. These aliases expose the same operations from the secondary tier perspective, where read/write refers to secondary accessing primary. This avoids confusion when reading TieringOffloadingManager code (e.g. calling prepare_load inside a cascade/store path would be misleading).
Source code in vllm/v1/kv_offload/tiering/manager.py
get_kv_memoryview ¶
get_kv_memoryview() -> memoryview
Return the memoryview over the primary tier's KV cache buffer.
The view has shape (num_blocks, row_stride_bytes) and is backed by the SharedOffloadRegion mmap. Secondary tiers address block b as view[b].
Source code in vllm/v1/kv_offload/tiering/manager.py
PendingPromotion dataclass ¶
Accumulator for blocks awaiting submit_load() for one (tier, request).
Source code in vllm/v1/kv_offload/tiering/manager.py
TieringOffloadingManager ¶
Bases: OffloadingManager
Orchestrates multi-tier KV cache offloading.
This manager coordinates between a CPU primary tier (with direct GPU access) and zero or more secondary tiers (Storage, Network, etc.) to provide hierarchical KV cache offloading.
Key internal state
- Minimal state tracking; relies on secondary tiers to report completion via get_finished()
- Secondary tiers return JobResult objects containing all necessary information
- job_id_counter: monotonically increasing counter for job IDs
Source code in vllm/v1/kv_offload/tiering/manager.py
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 | |
__init__ ¶
__init__(
primary_tier: CPUPrimaryTierOffloadingManager,
secondary_tiers: list[SecondaryTierManager]
| None = None,
enable_events: bool = False,
)
Initialize the TieringOffloadingManager.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
primary_tier | CPUPrimaryTierOffloadingManager | The primary tier manager (CPU-based). | required |
secondary_tiers | list[SecondaryTierManager] | None | List of secondary tier managers (e.g., Storage, Network). Can be None or empty list. | None |
enable_events | bool | Whether to track offloading events | False |
Source code in vllm/v1/kv_offload/tiering/manager.py
_flush_pending_promotions ¶
Submit one batched submit_load() per (tier, request).
Called from take_events() at the end of each engine step, flushing all promotion requests deferred during lookup().
Source code in vllm/v1/kv_offload/tiering/manager.py
_initiate_promotion ¶
_initiate_promotion(
tier: SecondaryTierManager,
key: OffloadKey,
req_context: ReqContext,
) -> bool
Queue a block for promotion from a secondary tier to the primary tier.
Allocates space in the primary tier immediately (sets ref_cnt=-1 so subsequent lookups within the same step see the slot as in-flight), then defers the actual submit_load() call to _flush_pending_promotions() so all blocks queued during one engine step are submitted as a single batched job.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tier | SecondaryTierManager | The secondary tier to promote from | required |
key | OffloadKey | Block to promote | required |
req_context | ReqContext | Per-request context forwarded to primary.prepare_write(). | required |
Returns:
| Type | Description |
|---|---|
bool | True if promotion was initiated, False if primary tier is full. |
Source code in vllm/v1/kv_offload/tiering/manager.py
_maybe_process_finished_jobs ¶
Poll secondary tiers for completed jobs (at most once per step).
Guarded by _processed_jobs_this_step: the first call in an engine step does the actual polling; subsequent calls are no-ops. The flag is reset in take_events() at the end of each step.
Source code in vllm/v1/kv_offload/tiering/manager.py
_next_job_id ¶
_process_finished_jobs ¶
Unconditionally poll all secondary tiers for completed jobs.
This method: 1. Calls get_finished() on each secondary tier 2. For completed stores (primary→secondary): calls primary.complete_read() to decrement ref_cnt 3. For completed loads (secondary→primary): calls primary.complete_write() to make blocks available
Source code in vllm/v1/kv_offload/tiering/manager.py
complete_load ¶
complete_load(
keys: Collection[OffloadKey], req_context: ReqContext
)
Mark blocks as done loading from primary tier to GPU.
This decrements ref_cnt on the blocks in the primary tier, allowing them to be evicted again.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
keys | Collection[OffloadKey] | Blocks that finished loading. | required |
req_context | ReqContext | Per-request context. | required |
Source code in vllm/v1/kv_offload/tiering/manager.py
complete_store ¶
complete_store(
keys: Collection[OffloadKey],
req_context: ReqContext,
success: bool = True,
)
Mark blocks as done storing from GPU to primary tier.
This is where secondary tier cascading happens — after blocks are confirmed to be in the primary tier, they are cascaded to ALL secondary tiers.
For each secondary tier: 1. Call primary.prepare_read() to get LoadStoreSpec AND increment ref_cnt (protecting blocks during async transfer) 2. Call tier.submit_store() to start async transfer: primary→secondary 3. Track the job in _store_jobs dictionary
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
keys | Collection[OffloadKey] | Blocks that finished storing. | required |
success | bool | Whether the GPU→primary transfer succeeded. | True |
req_context | ReqContext | Per-request context forwarded to primary.prepare_read(). | required |
Source code in vllm/v1/kv_offload/tiering/manager.py
lookup ¶
lookup(
key: OffloadKey, req_context: ReqContext
) -> bool | None
Check whether a single block is offloaded and ready.
Algorithm
- Process any completed async jobs first.
- Query primary tier — short-circuit on hit or in-flight.
- On primary miss, query secondary tiers — stop on first hit and initiate promotion.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key | OffloadKey | Block hash to look up. | required |
req_context | ReqContext | Per-request context. | required |
Returns:
| Type | Description |
|---|---|
bool | None | True — block is ready in the primary tier. |
bool | None | None — block found but not yet ready (primary in-flight, promotion started, or a secondary tier is busy). |
bool | None | False — block not found in any tier, or primary is full and cannot accept a promotion. |
Source code in vllm/v1/kv_offload/tiering/manager.py
prepare_load ¶
prepare_load(
keys: Collection[OffloadKey], req_context: ReqContext
) -> LoadStoreSpec
Prepare blocks to be loaded from primary tier to GPU.
CRITICAL: This method calls _maybe_process_finished_jobs() FIRST to ensure that any completed promotions have been finalized and blocks are ready.
This increments ref_cnt on the blocks in the primary tier, protecting them from eviction during the transfer.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
keys | Collection[OffloadKey] | Blocks to prepare for loading. | required |
req_context | ReqContext | Per-request context. | required |
Returns:
| Type | Description |
|---|---|
LoadStoreSpec | LoadStoreSpec for reading from primary tier. |
Source code in vllm/v1/kv_offload/tiering/manager.py
prepare_store ¶
prepare_store(
keys: Collection[OffloadKey], req_context: ReqContext
) -> PrepareStoreOutput | None
Prepare blocks to be stored from GPU to primary tier.
CRITICAL: This method calls _maybe_process_finished_jobs() FIRST to ensure that any completed async transfers have their ref_cnt decremented before the primary tier makes eviction decisions.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
keys | Collection[OffloadKey] | Blocks to prepare for storing. | required |
req_context | ReqContext | Per-request context. | required |
Returns:
| Type | Description |
|---|---|
PrepareStoreOutput | None | PrepareStoreOutput describing where to store blocks and what was |
PrepareStoreOutput | None | evicted, or None if store cannot proceed. |
Source code in vllm/v1/kv_offload/tiering/manager.py
shutdown ¶
take_events ¶
take_events() -> Iterable[OffloadingEvent]
End-of-step hook: flush deferred work, yield events, reset per-step state.
Called once per engine step from Scheduler.update_from_output() → connector.take_events(). Ensures _maybe_process_finished_jobs() has run at least once this step, flushes pending promotions, yields collected events, and resets the per-step flag.
Yields:
| Type | Description |
|---|---|
Iterable[OffloadingEvent] | New OffloadingEvents collected since the last call. |
Source code in vllm/v1/kv_offload/tiering/manager.py
touch ¶
touch(
keys: Collection[OffloadKey], req_context: ReqContext
)
Mark blocks as recently used in all tiers.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
keys | Collection[OffloadKey] | Blocks to mark as recently used. | required |
req_context | ReqContext | Per-request context. | required |