Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
8b59753c
Unverified
Commit
8b59753c
authored
Dec 24, 2025
by
Chao Lei
Committed by
GitHub
Dec 24, 2025
Browse files
[P/D] Mooncake connector support more protocols (#30133)
Signed-off-by:
LCAIZJ
<
leichao139636@163.com
>
parent
538e830c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
vllm/distributed/kv_transfer/kv_connector/v1/mooncake_connector.py
...ributed/kv_transfer/kv_connector/v1/mooncake_connector.py
+7
-1
No files found.
vllm/distributed/kv_transfer/kv_connector/v1/mooncake_connector.py
View file @
8b59753c
...
...
@@ -408,7 +408,13 @@ class MooncakeConnectorWorker:
self
.
engine
=
TransferEngine
()
self
.
hostname
=
get_ip
()
ret_value
=
self
.
engine
.
initialize
(
self
.
hostname
,
"P2PHANDSHAKE"
,
"rdma"
,
""
)
protocol
=
self
.
vllm_config
.
kv_transfer_config
.
kv_connector_extra_config
.
get
(
# type: ignore[union-attr]
"mooncake_protocol"
,
"rdma"
)
logger
.
info
(
"The Mooncake Transfer Engine is using %s as its protocol."
,
protocol
)
ret_value
=
self
.
engine
.
initialize
(
self
.
hostname
,
"P2PHANDSHAKE"
,
protocol
,
""
)
if
ret_value
!=
0
:
raise
RuntimeError
(
"Mooncake Transfer Engine initialization failed."
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment