We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently the ConvertToDeltaBuilder skips fetching and populating the stats
ConvertToDeltaBuilder
delta-rs/crates/core/src/operations/convert_to_delta.rs
Lines 332 to 353 in 81593e9
This results in log files missing the min/max/null count statistics.
Use Case
These stats are useful as they allow partition pruning and thus influence performance.
Granted it may be possible to use the stats from the files themselves, but that it is sub-optimal to reading from the log directly.
Related Issue(s)
The text was updated successfully, but these errors were encountered:
feat: add stats to convert-to-delta operation (#2491)
c86d29f
# Description Collect stats during conversion of a parquet dir to a Delta table and add to the actions. # Related Issue(s) Closes #2490 # Documentation
Successfully merging a pull request may close this issue.
Description
Currently the
ConvertToDeltaBuilder
skips fetching and populating the statsdelta-rs/crates/core/src/operations/convert_to_delta.rs
Lines 332 to 353 in 81593e9
This results in log files missing the min/max/null count statistics.
Use Case
These stats are useful as they allow partition pruning and thus influence performance.
Granted it may be possible to use the stats from the files themselves, but that it is sub-optimal to reading from the log directly.
Related Issue(s)
The text was updated successfully, but these errors were encountered: