Add support for using vortex in iceberg#1
Merged
Merged
Conversation
Signed-off-by: Robert Kruszewski <github@robertk.io>
robert3005
commented
Jul 14, 2026
robert3005
commented
Jul 14, 2026
robert3005
commented
Jul 14, 2026
… summary - VortexWriterBuilder now holds the VortexSession and shares it across the writers it builds instead of creating one per close() call. - VortexWriter no longer buffers record batches in memory: batches stream through a bounded channel into a background task driving the vortex push-based write, so data is compressed and flushed as it arrives. - Row count, file size, null/NaN counts, and min/max bounds now come from the vortex WriteSummary footer statistics instead of being recomputed from arrow batches; NanValueCountVisitor and the with_match_mode knob are dropped, and current_written_size reports flushed plus buffered bytes from the writer. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Ly8pVPrXvxp4b53N1EqhBc
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Ly8pVPrXvxp4b53N1EqhBc
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Ly8pVPrXvxp4b53N1EqhBc
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.
Just like adding support to iceberg-java this pr is aimed to add the same functionality to iceberg-rust