RATIS-2625. Streaming: support control plane in Data Stream - #1534
Open
amaliujia wants to merge 8 commits into
Open
RATIS-2625. Streaming: support control plane in Data Stream#1534amaliujia wants to merge 8 commits into
amaliujia wants to merge 8 commits into
Conversation
amaliujia
marked this pull request as draft
July 29, 2026 02:48
amaliujia
marked this pull request as ready for review
July 30, 2026 03:28
Contributor
Author
|
@szetszwo this is the follow up for apache/ozone#10823 (comment) |
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 changes were proposed in this pull request?
This PR is AI-assisted
Adds a first-class mid-stream command plane to Ratis data streams. Callers can send opaque command payloads during an active stream via DataStreamOutput.commandAsync(). The server delivers them to StateMachine.DataStream.onCommand() instead of writing bytes to the data channel. Commands are ordered with data writes, replicated to remote peers like STREAM_DATA, and do not advance the stream byte offset.
Example usage:
What is the link to the Apache JIRA
https://issues.apache.org/jira/browse/RATIS-2625
How was this patch tested?
Unit tests