Structs§
- Batch
Buffer - Parquet
Batch Writer - Parquet
Record Config - RowGroup
Reader - Write
Stats - Statistics about the writing process.
Traits§
- Parquet
Record - A trait for types that can be serialized to and from Parquet format.
Functions§
- read_
parquet - Read parquet file with default configuration (verbose enabled).
- read_
parquet_ columns - Read only specified column from parquet file with default configuration (verbose enabled).
- read_
parquet_ columns_ par - Read only specified column from parquet in parallel with default configuration (verbose enabled) using Rayon.
- read_
parquet_ columns_ with_ config - Read only specified column from parquet file with the provided configuration. This function efficiently reads only the specified column from parquet files, which is faster because only the specified column needs to be scanned.
- read_
parquet_ columns_ with_ config_ par - Read only specified column from parquet in parallel with the provided configuration using Rayon.
- read_
parquet_ par - Read parquet in parallel with default configuration (verbose enabled) using Rayon.
- read_
parquet_ with_ config - Read parquet file with the provided configuration.
- read_
parquet_ with_ config_ par - Read parquet in parallel with the provided configuration using Rayon.