Crate parquet_record

Crate parquet_record 

Source

Structs§

BatchBuffer
ParquetBatchWriter
ParquetRecordConfig
RowGroupReader
WriteStats
Statistics about the writing process.

Traits§

ParquetRecord
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.