Module parquet::file::reader

source ·
Expand description

File reader API and methods to access file metadata, row group readers to read individual column chunks, or access record iterator.

Re-exports§

Structs§

Traits§

  • The ChunkReader trait generates readers of chunks of a source.
  • Parquet file reader API. With this, user can get metadata information about the Parquet file, can get reader for each row group, and access record iterator.
  • Length should return the total number of bytes in the input source. It’s mainly used to read the metadata, which is at the end of the source.
  • Parquet row group reader API. With this, user can get metadata information about the row group, as well as readers for each individual column chunk.