-
Notifications
You must be signed in to change notification settings - Fork 847
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
Verification failure on 30.0.0 RC1 -- failure to read object_store path while building parquet #3410
Comments
Yes I added parquet integration in #3370 I suspect something funky is occurring with the path dependency, I suspect we will need cargo to strip that out prior to running the verification |
I need to run to a family event this afternoon and traveling tomorrow, so am not sure I will be able to work on this for a day or two |
Maybe we can add a patch to the verify script to remove the path note in the object store dependency When I changed parquet/Cargo.toml 's object_store line object_store = { version = "0.5", path = "../object_store", default-features = false, optional = true } to object_store = { version = "0.5", default-features = false, optional = true } Than it seems to have worked |
|
Is it possible due to cargo version?
|
Hi @viirya -- I checked my cargo version and it matches yours cargo --version
cargo 1.66.0 (d65d197ad 2022-11-15) I think the difference is that the verify script is running arrow-rs/dev/release/create-tarball.sh Line 126 in 9b57621
Thus the build is still looking for I will make a PR to update the verification script |
IMO it is the tarball at fault, it isn't a coherent build system. I can have a play this afternoon if you like, ideally cargo would generate this for us, but not sure if you can make it handle unreleased crates... I can have a play
|
see #3414 for underlying issue. I will close this issue with a workaround |
Describe the bug
The verification of arrow rc fails related to object_store (which I don't think it should depend on)
re #3336
To Reproduce
Expected behavior
Verify should pass
Additional context
Looking a little more, it appears the issue is that
cargo build
for parquet uses the object store 🤔The text was updated successfully, but these errors were encountered: