Expand description
Contains reader which reads parquet data into arrow [RecordBatch
]
Modulesยง
- filter ๐
- selection ๐
StatisticsConverter
to convert statistics in parquet format to arrow [ArrayRef
].
Structsยง
- An
ArrowPredicate
created from anFnMut
- Builder for constructing parquet readers into arrow.
- The metadata necessary to construct a
ArrowReaderBuilder
- Options that control how metadata is read for a parquet file
- An
Iterator<Item = ArrowResult<RecordBatch>>
that yields [RecordBatch
] read from a parquet data source - Reader
Page ๐Iterator - Reader
RowGroups ๐ - Filter applied during the parquet read process
RowSelection
allows selecting or skipping a provided number of rows when scanning the parquet file.RowSelection
is a collection ofRowSelector
used to skip rows when scanning a parquet file
Traitsยง
- A predicate operating on [
RecordBatch
] - A collection of row groups
Functionsยง
- apply_
range ๐Applies an optional offset and limit to an optionalRowSelection
- evaluate_
predicate ๐Evaluates anArrowPredicate
, returning aRowSelection
indicating which rows to return. - selects_
any ๐Returnstrue
ifselection
isNone
or selects some rows
Type Aliasesยง
- A synchronous builder used to construct
ParquetRecordBatchReader
for a file