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
{{ message }}
This repository has been archived by the owner on Jan 11, 2021. It is now read-only.
I'm curious if there are plans to support HDFS within this crate?
The Java parquet library allows parquet files to be read locally or from HDFS and in both cases it is possible to push down the projection and only retrieve the columns needed, which can make a huge difference in performance.
The text was updated successfully, but these errors were encountered:
Yes that's in the plan. I took a brief look at the hdfs crate, and think it should be relatively easy to have HdfsFile implement the Read. With that, it seems to only require a small code change.
The projection pushdown is orthogonal to the HDFS issue I think. It is already supported by the current record reader.
I'm curious if there are plans to support HDFS within this crate?
The Java parquet library allows parquet files to be read locally or from HDFS and in both cases it is possible to push down the projection and only retrieve the columns needed, which can make a huge difference in performance.
The text was updated successfully, but these errors were encountered: