-
Hi I am working on an application which needs to read parquet file stored in external storage which allows reading file at different offset. I want to know how I can use .Net Interface to do the following ( I know it is possible to do in c++): I might have more questions but if above is possible I guess this is MVP for me. I am happy to contribute if this is not possible today in C# library, so would appreciate help here in my success. Thanks a lot |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Hi Chirag This is exactly how ParquetSharp behaves if you read a file normally following the examples. When you create a Does this answer your question? Cheers, |
Beta Was this translation helpful? Give feedback.
Hi Chirag
This is exactly how ParquetSharp behaves if you read a file normally following the examples. When you create a
ParquetFileReader
, only the file metadata is read initially. Then if you iterate over the row groups and only read data for the column you are interested in, the column data will be read as required without reading data for other columns.Does this answer your question?
Cheers,
Adam