feat(data_plane): add Mooncake GDR support - #3501
Open
zyzhou5 wants to merge 2 commits into
Open
Conversation
zyzhou5
marked this pull request as draft
August 5, 2026 18:14
zyzhou5
force-pushed
the
zezhou/tq-mooncake-gdr
branch
from
August 7, 2026 01:57
8fae9a1 to
6e39a2b
Compare
zyzhou5
marked this pull request as ready for review
August 7, 2026 22:27
zyzhou5
force-pushed
the
zezhou/tq-mooncake-gdr
branch
from
August 7, 2026 22:37
6e39a2b to
d2edefb
Compare
Contributor
Author
|
/ok to test d2edefb |
zyzhou5
force-pushed
the
zezhou/tq-mooncake-gdr
branch
from
August 17, 2026 21:13
d2edefb to
31f9117
Compare
Contributor
Author
|
/ok to test 31f9117 |
Signed-off-by: Zeyu Zhou <zezhou@nvidia.com>
zyzhou5
force-pushed
the
zezhou/tq-mooncake-gdr
branch
from
August 26, 2026 17:42
31f9117 to
5bdc8e7
Compare
Contributor
Author
|
/ok to test 5bdc8e7 |
Signed-off-by: Zeyu Zhou <zezhou@nvidia.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.
What does this PR do?
Adds the minimal NeMo-RL configuration plumbing needed to enable TransferQueue v0.1.9's Mooncake GPUDirect RDMA (GDR) path. TransferQueue v0.1.9 is already pinned on current
mainby #3423.data_plane.use_gdr; omitting it defaults tofalse, so existing recipes are unchanged;protocol: rdmaanduse_gdr: trueto Mooncake when GDR is enabled;Persistent queued Mooncake objects remain in CPU RAM. GDR changes the CUDA client's transfer path by using a registered GPU staging buffer; it does not turn the persistent queue into GPU storage.
User configuration
Relationship to #2935
This PR does not stack on or require #2935. The TQ dependency update is already on
mainvia #3423. The runtime-environment cleanup proposed by #2935 is separate and is not included here.Relationship to #3837
To use GDR on the put side instead of falling back to CPU RDMA, we need #3837 to get merged since TQ must be initialized inside the generation worker after CUDA is initialized so it selects GDR for PUTs.