-
Notifications
You must be signed in to change notification settings - Fork 824
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
POC: Add ParquetMetaDataReader #6392
Closed
+1,009
−102
Closed
Changes from 12 commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
0c5087f
add ParquetMetaDataReader
etseidl d5b60ab
add todo
etseidl d462fda
add more todos
etseidl 6b9dd1c
take a stab at reading metadata without file size provided
etseidl 0a2c4b2
temporarily comment out MetadataLoader
etseidl 58f2463
remove debug print
etseidl 08b985a
clippy
etseidl 96062e1
Merge remote-tracking branch 'origin/master' into metadata_reader
etseidl cdf6ac5
add more todos
etseidl 25e23d7
uncomment MetadataLoader
etseidl 03bc663
silence doc warnings
etseidl 51a5a72
fix size check
etseidl 8a3f496
add try_parse_range
etseidl f8450e2
start on documentation
etseidl 180e3e6
make sure docs compile
etseidl 9d1147d
attempt recovery in test
etseidl 1a1d3aa
implement some suggestions from review
etseidl d450ab8
remove suffix reading for now
etseidl 3c340b7
add new error types to aid recovery
etseidl 0d13599
remove parquet_metadata_from_file and add ParquetMetaDataReader::parse
etseidl d300cf3
remove todo
etseidl 4ee162f
point to with_prefetch_hint from try_load docstring
etseidl 2d65c3f
refactor the retry logic
etseidl 2a2cf81
Merge remote-tracking branch 'origin/master' into metadata_reader
etseidl faff575
add some more tests
etseidl c9e5ea6
add load() and bring over tests from async_reader/metadata.rs
etseidl 4214909
only run new tests if async is enabled
etseidl File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
An alternative perhaps would be to deprecate
fetch_parquet_metadata
entirely and suggest people useParquetMetaDataReader
which s more complete and full featured -- I think we could deprecate this function in a minor release (we can't remover it until a major release)