Optional
options: ReaderOptionsOptions for reading Parquet data. Optional keys include:
batchSize
: The number of rows in each batch. If not provided, the upstream parquet
default is 1024.rowGroups
: Only read data from the provided row group indexes.limit
: Provide a limit to the number of rows to be read.offset
: Provide an offset to skip over the given number of rows.columns
: The column names from the file to read.Create a readable stream of record batches.
Each item in the stream will be a RecordBatch
.
Optional
options: ReaderOptionsOptions for reading Parquet data. Optional keys include:
batchSize
: The number of rows in each batch. If not provided, the upstream parquet
default is 1024.rowGroups
: Only read data from the provided row group indexes.limit
: Provide a limit to the number of rows to be read.offset
: Provide an offset to skip over the given number of rows.columns
: The column names from the file to read.concurrency
: The number of concurrent requests to makeStatic
fromConstruct a ParquetFile from a new Blob or File handle.
Safety: Do not use this in a multi-threaded environment,
(transitively depends on !Send
web_sys::Blob
)
Static
fromConstruct a ParquetFile from a new URL.
Optional
options: Map<any, any>The options to pass into object-store
's parse_url_opts
Read from the Parquet file in an async fashion.