Conversation
Signed-off-by: yewentao256 <zhyanwentao@126.com>
Signed-off-by: yewentao256 <zhyanwentao@126.com>
Signed-off-by: yewentao256 <zhyanwentao@126.com>
Signed-off-by: yewentao256 <zhyanwentao@126.com>
Signed-off-by: yewentao256 <zhyanwentao@126.com>
Signed-off-by: omerpaz95 <omerpaz95@gmail.com>
Signed-off-by: yewentao256 <zhyanwentao@126.com>
Signed-off-by: yewentao256 <zhyanwentao@126.com>
Signed-off-by: omerpaz95 <omerpaz95@gmail.com>
Signed-off-by: omerpaz95 <omerpaz95@gmail.com>
Signed-off-by: omerpaz95 <omerpaz95@gmail.com>
Signed-off-by: omerpaz95 <omerpaz95@gmail.com>
Signed-off-by: omerpaz95 <omerpaz95@gmail.com>
Signed-off-by: omerpaz95 <omerpaz95@gmail.com>
yewentao256
approved these changes
Aug 13, 2026
yewentao256
left a comment
Member
There was a problem hiding this comment.
LGTM, thanks for the iterations!
Collaborator
|
/ci run |
|
✅ Triggered Buildkite CI #83812 for commit |
Collaborator
|
The failed CI is related to this PR. Need to fix the tests. |
Contributor
|
This pull request has merge conflicts that must be resolved before it can be |
Signed-off-by: omerpaz95 <omerpaz95@gmail.com>
…rker_meta Signed-off-by: omerpaz95 <omerpaz95@gmail.com>
Collaborator
|
/ci run |
|
✅ Triggered Buildkite CI #83886 for commit |
Collaborator
Signed-off-by: omerpaz95 <omerpaz95@gmail.com>
Collaborator
|
/ci run |
|
✅ Triggered Buildkite CI #83938 for commit |
Collaborator
|
/ci retry |
|
✅ Triggered Buildkite CI #83985 for commit |
zyp2014
pushed a commit
to zyp2014/vllm
that referenced
this pull request
Aug 21, 2026
…lm-project#49585) Signed-off-by: yewentao256 <zhyanwentao@126.com> Signed-off-by: omerpaz95 <omerpaz95@gmail.com> Signed-off-by: omerpaz95 <73347585+omerpaz95@users.noreply.github.com> Co-authored-by: yewentao256 <zhyanwentao@126.com> Co-authored-by: Wentao Ye <44945378+yewentao256@users.noreply.github.com>
wyettzeng
pushed a commit
to wyettzeng/vllm
that referenced
this pull request
Aug 21, 2026
…lm-project#49585) Signed-off-by: yewentao256 <zhyanwentao@126.com> Signed-off-by: omerpaz95 <omerpaz95@gmail.com> Signed-off-by: omerpaz95 <73347585+omerpaz95@users.noreply.github.com> Co-authored-by: yewentao256 <zhyanwentao@126.com> Co-authored-by: Wentao Ye <44945378+yewentao256@users.noreply.github.com> Signed-off-by: Wyett <wyettzeng@gmail.com>
zufangzhu
pushed a commit
to zufangzhu/vllm
that referenced
this pull request
Aug 24, 2026
…lm-project#49585) Signed-off-by: yewentao256 <zhyanwentao@126.com> Signed-off-by: omerpaz95 <omerpaz95@gmail.com> Signed-off-by: omerpaz95 <73347585+omerpaz95@users.noreply.github.com> Co-authored-by: yewentao256 <zhyanwentao@126.com> Co-authored-by: Wentao Ye <44945378+yewentao256@users.noreply.github.com> Signed-off-by: Zhu, Zufang <zufang.zhu@intel.com>
khushali9
pushed a commit
to khushali9/vllm
that referenced
this pull request
Aug 29, 2026
…lm-project#49585) Signed-off-by: yewentao256 <zhyanwentao@126.com> Signed-off-by: omerpaz95 <omerpaz95@gmail.com> Signed-off-by: omerpaz95 <73347585+omerpaz95@users.noreply.github.com> Co-authored-by: yewentao256 <zhyanwentao@126.com> Co-authored-by: Wentao Ye <44945378+yewentao256@users.noreply.github.com> Signed-off-by: khushali9 <khushali.desai9@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Purpose
Why this is still needed after #38390. The PR implemented the V2 model runner EC Connector, but EC still has no worker -> scheduler metadata channel. KV connectors have a complete one:
build_connector_worker_meta()->KVConnectorOutput.kv_connector_worker_meta->KVOutputAggregator-> scheduler-side KV connector.EC had none of those three pieces, so a worker-side
ECConnectorhas no way to report per-step state — e.g. "thismm_hashis now durably stored" — back to its scheduler-side EC connector. That blocks the CPU-offload based on CUDA events and NIXL P2P EC connectors, which need exactly this report (We are retiring the StepTracker in the CPU EC Connector, because using CUDA events is the right way to handle "copy done" notifications, instead of waiting until the batch is done).This PR adds that channel, and fixes the exit paths where the worker's
ec_connector_outputwas computed and then dropped before reaching the scheduler.The channel
ec_connector/base.py:ECConnectorWorkerMetadataABC with an abstractaggregate(), plusECConnectorBase.build_connector_worker_meta().v1/outputs.py:ec_connector_worker_metafield onECConnectorOutput.ec_connector/utils.py:ECOutputAggregator, mirroringKVOutputAggregator- merges the EC output of the rank that ran the connector onto the rank whoseModelRunnerOutputreaches the scheduler.engine/core.py,executor/abstract.py,executor/multiproc_executor.py: wiring so the aggregator runs when an EC connector is configured.build_connector_worker_meta().Default behavior is unchanged for existing connectors: nothing overrides
build_connector_worker_meta()yet, so it returnsNone.Test Plan
tests/v1/ec_connector/unit/test_metadata.py ..................... PASSED
tests/v1/ec_connector/unit/test_ec_example_connector.py ......... PASSED
tests/v1/ec_connector/unit/cpu/test_connector.py ................ PASSED
36 passed, 2 warnings
pre-commit: ruff check / ruff format / mypy / SPDX headers / etc. — all Passed