-
Notifications
You must be signed in to change notification settings - Fork 1k
Open
Labels
enhancementAny new improvement worthy of a entry in the changelogAny new improvement worthy of a entry in the changelog
Description
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
I have arrow records that I want to persist as parquet, however, arrow-rs' parquet implementation currently does not support this. When I tried I got this error:
Converting RunEndEncodedType to parquet not supported
Which originates from
arrow-rs/parquet/src/arrow/schema/mod.rs
Lines 777 to 779 in 00a2f73
| DataType::RunEndEncoded(_, _) => Err(arrow_err!( | |
| "Converting RunEndEncodedType to parquet not supported", | |
| )), |
Describe the solution you'd like
Support converting RunEnd arrays to parquet.
Describe alternatives you've considered
Expanding REE arrays to not be REE encoded, but that kind of defeats the point.
Metadata
Metadata
Assignees
Labels
enhancementAny new improvement worthy of a entry in the changelogAny new improvement worthy of a entry in the changelog