Any plan to support filter pushdown? #6388
-
Hi: |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 8 replies
-
Various forms of filter pushdown are supported See https://docs.rs/parquet/latest/parquet/arrow/arrow_reader/struct.RowSelection.html and https://docs.rs/parquet/latest/parquet/arrow/arrow_reader/struct.RowFilter.html These are low level interfaces, if you want a higher-level interface I'd recommend looking into DataFusion which utilises these interfaces and exposes a dataframe style API or SQL |
Beta Was this translation helpful? Give feedback.
-
i think this is also an issue in parquet c++ implementation, where skip/read with selective inputs can incur large overhead |
Beta Was this translation helpful? Give feedback.
Yes the docs for https://docs.rs/parquet/latest/parquet/arrow/arrow_reader/struct.RowFilter.html discuss this