[CL-129] partial payloads: tcache range acquire and sub-reservations - #244
Open
vladimir-ea wants to merge 3 commits into
Open
vladimir-ea wants to merge 3 commits into
vladimir-ea wants to merge 3 commits into
Conversation
vladimir-ea
added this pull request to stack #246
September 11, 2026 14:59
vladimir-ea
force-pushed
the
ve/tcache_ranges
branch
from
September 11, 2026 15:17
ff6a809 to
6e4e17c
Compare
Producer tracks min_allocation so uncommitted reservations block ring reuse. MultiProducer serialises allocation behind a claim, initialising slot headers before the head advances. Consumers gain pinned sub-slot ranges, fixed retention boundaries, per-part sub-reservations with claim/validate/accept states, and gossip frame descriptors over pinned segments. Gossip decompression computes the message id before the offset commits the reservation. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
vladimir-ea
force-pushed
the
ve/tcache_ranges
branch
from
September 11, 2026 18:28
6e4e17c to
d8e1193
Compare
ninaiiad
approved these changes
Sep 14, 2026
| } | ||
|
|
||
| #[derive(Clone, Copy, Debug)] | ||
| pub enum GossipSegment { |
Collaborator
There was a problem hiding this comment.
this doesn't have to be Gossip* specific, does it?
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.
tcache changes for partial payloads
correctness changes:
producer.rsto sub-mdule)new features:
sub-ranges will be used to serve individual cell data from a sidecar buffer
sub-reservations will be used to write individual cells into a whole sidecar buffer reservation
fixed retention boundary means the producer fixes the consumer's 'tail guard' by emitting retention events - the consumer doesn't rollup their tail past this guard until the producer releases it, then the tail can roll normally upto the new guard. this will be used with a new data columns tcache which will have per-slot retention.