-
Notifications
You must be signed in to change notification settings - Fork 406
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
chore: datafusion 34, arrow & parquet 49 #1983
Conversation
arrow-select = { version = "49.0.0" } | ||
parquet = { version = "49.0.0" } | ||
|
||
object_store = "0.8" |
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.
I moved object_store
to a workspace dependency as it's referenced in two separate crates - easier to keep the dependency in sync this way.
@emcake - thanks for taking care of this! Seems there is one more clippy error to address :). |
I think this is now complete and up to date - there still appears to be some tests failing but I'm struggling to work out if these are flaky or real. |
@emcake the restore by datetime and a read test are super flaky.. |
@emcake maybe object store 0.8 is causing the read failures, can you revert to object store 0.7? |
Object store is coupled to datafusion. Had a first glance, and it seems like fixable problem, but may require some work. |
Looks like @roeap beat me to it! |
Description
Upgrades DataFusion and Arrow to v34 and v49 respectively. As a casualty we also need to upgrade object_store to v0.8.
Related Issue(s)
Arrow 49 contains a fix to allow for truncated statistics on binary columns (apache/arrow-rs#5037) that I'd like to employ to fix #1805 .