chore: bump iceberg-rust dependency to latest [iceberg]#3606
Merged
mbutrovich merged 10 commits intoapache:mainfrom Feb 27, 2026
Merged
chore: bump iceberg-rust dependency to latest [iceberg]#3606mbutrovich merged 10 commits intoapache:mainfrom
mbutrovich merged 10 commits intoapache:mainfrom
Conversation
Contributor
Author
|
Let's get DF52 in first, then I'll jump to an even newer iceberg-rust commit since they just picked up DF52 as well. |
# Conflicts: # native/Cargo.lock
comphead
reviewed
Feb 27, 2026
| .with_batch_size(batch_size) | ||
| .with_data_file_concurrency_limit(self.data_file_concurrency_limit) | ||
| .with_row_selection_enabled(true) | ||
| .with_metadata_size_hint(512 * 1024) // Same as DataFusion's default |
Contributor
There was a problem hiding this comment.
we prob need this to be defined by user via sprk params, but can be done later
comphead
approved these changes
Feb 27, 2026
Contributor
comphead
left a comment
There was a problem hiding this comment.
Thanks @mbutrovich CI failing but not likely because of this changes
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.
Which issue does this PR close?
N/A.
Rationale for this change
Take advantage of upstream reader performance optimizations:
stat()calls iceberg-rust#2175What changes are included in this PR?
stat()on delete files. I am fixing in upstream IcebergHow are these changes tested?
Existing tests. I also ran IcebergReadFromS3Suite locally (since it's not run in CI) to verify that reading a delete file's size in an object store works.