feat: add SimpleStorage payload transfer abstraction - #5
Closed
Ginray wants to merge 1 commit into
Closed
Conversation
Ginray
force-pushed
the
ucx-payload
branch
4 times, most recently
from
August 19, 2026 02:58
bf2d436 to
9207ea4
Compare
Owner
Author
|
Superseded by the consolidated implementation PR #6 from ucx-payload-o1. |
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. The new developer guide explains the official UCX install, native build,
runtime configuration, and how to verify
rc_verbsdata versus TCP auxiliary traffic.Validation
ruff check .passedgit diff --checkpassedtag(rc_verbs/hns_0:1) ka(tcp/enp189s0f0)16 MiB 96.78/97.02 MiB/s for PUT/GET
The current native close path can leave a server-side
Connection reset by remote peerwarningafter the client force-closes; the data and CLEAR checks still pass.