chore: upgrade iceberg crates from 0.8.0 to 0.9.0#20
Merged
Conversation
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
The 0.9.0 release moved storage backends out of the core `iceberg` crate into `iceberg-storage-opendal`. Key migration changes: - FileIOBuilder::new() now takes Arc<dyn StorageFactory> instead of a scheme string - FileIOBuilder::build() returns FileIO directly (no longer fallible) - FileIO::into_builder() removed; use config().props() instead - FileIO::from_path() removed; use FileIO::new_with_fs() for local - Pass explicit configured_scheme "s3" to OpenDalStorageFactory::S3 (the Glue catalog defaults to "s3a" which rejects s3:// URLs) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
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.
Summary
iceberg,iceberg-catalog-glue,iceberg-catalog-restfrom 0.8.0 to 0.9.0iceberg-storage-opendal(storage backends moved out of coreicebergcrate in 0.9.0)Migration details
FileIOBuilder::new()now takesArc<dyn StorageFactory>instead of a scheme stringFileIOBuilder::build()returnsFileIOdirectly (no longer fallible; storage is lazy)FileIO::into_builder()removed; useconfig().props()to inspect propertiesFileIO::from_path()removed; useFileIO::new_with_fs()for local filesystemconfigured_scheme: "s3"toOpenDalStorageFactory::S3— the Glue catalog defaults to"s3a"which rejectss3://URLsSupersedes #14 (Renovate) and #18 (toolchain).
Tested against
kafkatopicarchive_raw_iceberg.visa_token_eventsin staging.🤖 Generated with Claude Code