feat: add SimpleStorage payload transfer abstraction - #6
Open
Ginray wants to merge 2 commits into
Open
Conversation
Ginray
force-pushed
the
ucx-payload-o1
branch
3 times, most recently
from
August 19, 2026 09:49
1515b65 to
3e646fd
Compare
Ginray
force-pushed
the
ucx-payload-o1
branch
5 times, most recently
from
August 27, 2026 13:56
31047db to
429baf4
Compare
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.
Summary
PayloadTransferboundary for SimpleStorage large payloadsWhy
SimpleStorage needs a small data-plane boundary for large encoded payloads without changing its
ZMQ control protocol or forcing other storage backends onto the same transport. UCX is opt-in and
does not replace the storage backend or control plane.
User impact
The default remains:
Users can select
ucxwhen TQ is built with UCX support and each participating Ray node has amatching RoCE-v2 path. UCX uses RC for the payload data lane; TCP may be used only as the UCX
wireup/auxiliary lane when the environment requires it.
Validation
ruff check .passedgit diff --checkpassedtests/test_payload_transfer.pyThe current native close path can leave a server-side
Connection reset by remote peerwarningafter a client force-closes; the data and CLEAR checks still pass.