You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We're trying to use your software, but we have an error with dates in parquet files.
[2024-02-13, 01:02:55 UTC] {pod_manager.py:447} INFO - [base] thread 'tokio-runtime-worker' panicked at /cargo/registry/src/index.crates.io-6f17d22bba15001f/chrono-0.4.31/src/offset/mod.rs:360:41:
[2024-02-13, 01:02:55 UTC] {pod_manager.py:447} INFO - [base] No such local time
[2024-02-13, 01:02:55 UTC] {pod_manager.py:447} INFO - [base] note: run with RUST_BACKTRACE=1 environment variable to display a backtrace
[2024-02-13, 01:02:55 UTC] {pod_manager.py:447} INFO - [base] thread 'main' panicked at src/main.rs:164:33:
[2024-02-13, 01:02:55 UTC] {pod_manager.py:447} INFO - [base] called Result::unwrap() on an Err value: JoinError::Panic(Id(14), ...)
parquet need to be updated to >=30.0.1.
I tried to update to 30.0.1, but I'm new to Rust, and building gave me errors with clap package in main.rs code (parquet lib needs to update clap from 3.x to 4.x)
Could you provide some help ?
The text was updated successfully, but these errors were encountered:
To upgrade parquet to >=25.0.0, we need to upgrade clap as well. As you've found, this is a breaking change, changing the API fairly substantially.
We have also recently discovered a performance regression for remote files when upgrading parquet to >=21.0.0, which will need some work to resolve.
We have scheduled the work to upgrade parquet to the latest version for some time in the next 2 weeks.
If you need a fix sooner than that, you could have a go at a PR. (If you only use local files you wouldn't need to get into resolving the performance issue, and just do a local build in order to use the binary.)
I've updated to Parquet v51. It would be great if you can test whether this solves your problem. If not, please share a parquet file I can test against.
Hello,
We're trying to use your software, but we have an error with dates in parquet files.
[2024-02-13, 01:02:55 UTC] {pod_manager.py:447} INFO - [base] thread 'tokio-runtime-worker' panicked at /cargo/registry/src/index.crates.io-6f17d22bba15001f/chrono-0.4.31/src/offset/mod.rs:360:41:
[2024-02-13, 01:02:55 UTC] {pod_manager.py:447} INFO - [base] No such local time
[2024-02-13, 01:02:55 UTC] {pod_manager.py:447} INFO - [base] note: run with RUST_BACKTRACE=1 environment variable to display a backtrace
[2024-02-13, 01:02:55 UTC] {pod_manager.py:447} INFO - [base] thread 'main' panicked at src/main.rs:164:33:
[2024-02-13, 01:02:55 UTC] {pod_manager.py:447} INFO - [base] called Result::unwrap() on an Err value: JoinError::Panic(Id(14), ...)
It looks like this is the issue described here :
apache/arrow-rs#3430
parquet need to be updated to >=30.0.1.
I tried to update to 30.0.1, but I'm new to Rust, and building gave me errors with clap package in main.rs code (parquet lib needs to update clap from 3.x to 4.x)
Could you provide some help ?
The text was updated successfully, but these errors were encountered: