vllm.v1.kv_offload.tiering.p2p.manager ¶
P2PSecondaryTierManager: Secondary tier for P2P KV cache sharing.
Owns transports and a single bidirectional P2PSession per remote peer.
Classes:
-
P2PSecondaryTierManager–Secondary tier for P2P KV cache sharing.
P2PSecondaryTierManager ¶
Bases: SecondaryTierManager
Secondary tier for P2P KV cache sharing.
A single P2PSession per remote peer handles both client-role (loading blocks from the peer) and server-role (serving blocks to the peer) over the same control connection.
Single-threaded: every public method runs on the scheduler thread, and the engine drives polling via get_finished_jobs() once per step. has_pending_work() keeps the engine ticking so the control transport and existing sessions are polled even when no requests are scheduled.
Methods:
-
__init__–Initialize the P2P secondary tier manager.
-
drain_jobs–Block until every submitted load/store job has completed or failed.
-
on_new_request–Open the outbound session toward the producer if needed.
-
on_request_finished–Cancels pending loads and prunes session-scoped state.
Source code in vllm/v1/kv_offload/tiering/p2p/manager.py
96 97 98 99 100 101 102 103 104 105 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 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 | |
__init__(offloading_spec, primary_kv_view, tier_type='p2p', host='0.0.0.0', port=7777, backends=None, num_threads=4, **kwargs) ¶
Initialize the P2P secondary tier manager.
All keyword arguments after primary_kv_view come from the secondary_tiers entry in kv_connector_extra_config. See docs/features/kv_offloading_usage.md for the user-facing configuration reference.
Parameters:
-
(offloading_spec¶OffloadingSpec) –Owning
OffloadingSpec(providesvllm_configand the offloaded block layout). -
(primary_kv_view¶memoryview) –Memoryview over the CPU primary tier; the NIXL agent registers this region for RDMA transfers.
-
(tier_type¶str, default:'p2p') –Tier identifier (defaults to
"p2p"). -
(host¶str, default:'0.0.0.0') –Address the ZMQ control socket binds to.
-
(port¶int, default:7777) –Port for the ZMQ control socket. Must be reachable from peers.
-
(backends¶list[str] | None, default:None) –NIXL transport backends (e.g.
["UCX"],["MOONCAKE"],["LIBFABRIC"]). Defaults to["UCX"]. When any non-UCX backend is requested, the NIXL agent is initialized withbackends=...; otherwise it falls back to a UCX-only agent withnum_threadsthreads. -
(num_threads¶int, default:4) –NIXL agent worker threads for the UCX-only branch. Ignored when
backendscontains a non-UCX entry. -
(**kwargs¶Any, default:{}) –Reserved for future tier-specific options.
Source code in vllm/v1/kv_offload/tiering/p2p/manager.py
_drain_inflight_for_shutdown() ¶
Best-effort drain of inflight transfers before closing _data.
Mirrors session._drain_abort but as a single bounded loop. Collects inflight transfer_ids from each session, repeatedly calls _data.cancel(..., mode="wait") and _data.poll() so handles can surface as done/failed, and falls back to mode="immediate" once _SHUTDOWN_DRAIN_TIMEOUT_S elapses so a wedged peer can't hang us.
Source code in vllm/v1/kv_offload/tiering/p2p/manager.py
_get_or_create_session(peer_id) ¶
Return the existing session for peer_id, or open one outbound.
Decoder-side helper for on_new_request: when prefill is set, the consumer must reach the producer at peer_id. If we already have a session toward that peer (from a prior load or a peer-initiated inbound), reuse it; otherwise open an outbound ControlConnection and build a connected session.
Source code in vllm/v1/kv_offload/tiering/p2p/manager.py
_poll_once() ¶
One sweep of the polling work.
Drains the control transport, polls every session, accumulates their results into _finished_jobs, and reaps any dead sessions. Runs on the scheduler thread.
Source code in vllm/v1/kv_offload/tiering/p2p/manager.py
_reap_unbound_stores() ¶
Time out submit_store batches that no peer has ever fetched.
Walks _unbound_stores for entries whose oldest batch is older than _UNBOUND_STORE_TIMEOUT_S. Drops the kv_request_id, surfaces every batched job as failed, and adds the id to _failed_req_ids so a late inbound FetchMsg short-circuits to a clean rejection.
Source code in vllm/v1/kv_offload/tiering/p2p/manager.py
_remote_id_from_params(role_params) staticmethod ¶
Build peer_id from a role-scoped sub-dict (prefill/p2p).
Source code in vllm/v1/kv_offload/tiering/p2p/manager.py
drain_jobs() ¶
Block until every submitted load/store job has completed or failed.
Loops calling _poll_once() until no session has outstanding inbound loads or in-flight outbound stores. Mid-flight transfers are NOT cancelled — the caller (TieringOffloadingManager.reset_cache) needs the primary memoryview to be quiescent, not aborted. Results accumulate in _finished_jobs and are surfaced by the next get_finished_jobs() call.
Source code in vllm/v1/kv_offload/tiering/p2p/manager.py
on_new_request(req_context) ¶
Open the outbound session toward the producer if needed.
On the decoder side (prefill set), open a session toward the producer at remote_host:remote_port so submit_load can issue FetchMsg as soon as it fires. On the prefiller side, sessions are created when the consumer's inbound connection arrives in _accept_new_peers — submit_store no longer pre-creates anything.
Source code in vllm/v1/kv_offload/tiering/p2p/manager.py
on_request_finished(req_context) ¶
Cancels pending loads and prunes session-scoped state.
Decoder side (prefill set): looks up the session by peer_id because the producer's address is what addresses the client-role load to cancel. Prefiller side (decode set): looks up via kv_request_id because peer_id is no longer carried on store-time kv_transfer_params; if a session has bound the id, finish it. If no session has bound the id yet, this is a no-op: parked batches in _unbound_stores are left in place and cleaned up only by _reap_unbound_stores after _UNBOUND_STORE_TIMEOUT_S.
Source code in vllm/v1/kv_offload/tiering/p2p/manager.py
_UnboundStoreBatch dataclass ¶
A submit_store batch parked at the manager before any peer has fetched.
Indexed by kv_request_id only — the prefiller no longer learns the peer identity at store time. When a FetchMsg(kv_request_id) arrives on some session, the manager binds the kv_request_id to that session and replays every parked batch into ServerRole via session.add_stored_blocks.
Source code in vllm/v1/kv_offload/tiering/p2p/manager.py
_decode_params(kv_params) ¶
Return the decode sub-dict, or None if absent.
Set on prefiller requests; carries kv_request_id.
Source code in vllm/v1/kv_offload/tiering/p2p/manager.py
_prefill_params(kv_params) ¶
Return the prefill sub-dict, or None if absent.
Set on decoder requests; carries kv_request_id, remote_host, remote_port.