feat(chunking): support Split/Splice in bb print#11363
Merged
tyler-french merged 1 commit intomasterfrom Feb 23, 2026
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adds support for logging SplitBlob and SpliceBlob RPC calls in the remote execution log proto, enabling the bb print command to display these chunking-related operations. This is needed to test the Split/Splice functionality referenced in the linked Bazel PR.
Changes:
- Added two new proto message types (SplitBlobDetails and SpliceBlobDetails) to capture request/response details for chunking operations
- Extended the RpcCallDetails oneof to include the new message types with field numbers 15 and 16
Comments suppressed due to low confidence (2)
proto/remote_execution_log.proto:127
- There is an extra blank line here that deviates from the consistent spacing pattern used throughout the rest of this proto file. The standard convention is to have a single blank line between message definitions, but this adds two blank lines. Remove one blank line to maintain consistency with the rest of the file.
proto/remote_execution_log.proto:140 - There is an extra blank line here that deviates from the consistent spacing pattern used throughout the rest of this proto file. The standard convention is to have a single blank line between message definitions, but this adds two blank lines. Remove one blank line to maintain consistency with the rest of the file.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
e239699 to
a52322f
Compare
maggie-lou
approved these changes
Feb 21, 2026
a52322f to
24867aa
Compare
bb print
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.
This is needed to run
bb printto see Split/Splice calls, to test bazelbuild/bazel#28437BB print just reads the grpc log directly from whats in this file, so updating this file is sufficient.