feat: Add plan compression and CLI decode support - #586
Open
Rich-T-kid wants to merge 1 commit into
Open
Conversation
gabotechs
reviewed
Aug 4, 2026
Rich-T-kid
force-pushed
the
rich-T-kid/add-plan-compression
branch
from
September 5, 2026 03:15
e71218d to
0bb1777
Compare
Rich-T-kid
marked this pull request as draft
September 5, 2026 03:15
Rich-T-kid
force-pushed
the
rich-T-kid/add-plan-compression
branch
6 times, most recently
from
September 5, 2026 23:12
706f46e to
22168fa
Compare
Rich-T-kid
commented
Sep 5, 2026
Contributor
Author
There was a problem hiding this comment.
@gabotechs this PR is ready for review when you get a chance 🚀
| assert_contains!(&formatted, "NetworkShuffleExec"); | ||
| assert_contains!(&formatted, "metrics=[output_rows="); | ||
| assert_not_contains!(&formatted, "metrics=[output_rows={"); | ||
| assert_contains!(&formatted, "output_rows"); // e.g. output_rows{partition=0}=2 |
Contributor
Author
There was a problem hiding this comment.
note: the output format for output_rows comes from how datafusion Metric implements display so I don't think we can do anything about it here
Rich-T-kid
marked this pull request as ready for review
September 5, 2026 23:16
Rich-T-kid
force-pushed
the
rich-T-kid/add-plan-compression
branch
6 times, most recently
from
September 6, 2026 01:23
fdd621c to
bd95a6e
Compare
Rich-T-kid
force-pushed
the
rich-T-kid/add-plan-compression
branch
from
September 6, 2026 01:30
bd95a6e to
9c7061f
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.
Closes #523
Why?
What Changed
PlanSnapshot/PlanNodeSnapshotencode and decode support.EXPLAIN ANALYZEreturn a base64-encoded snapshot when thegrpcfeature is enabled.DistributedExec::decode_plan_snapshot.datafusion-distributed-console --encoded-planfor one-off decoding.Test
tests/explain_analyze.rsto expect the new output format