Skip to main content

Module streaming

Module streaming 

Source
Expand description

Streaming dataset for lazy/chunked data loading.

Provides StreamingDataset for working with datasets that are too large to fit in memory, or when you want to start processing before the full dataset is loaded.

Structs§

ChainedSource
A data source that chains multiple sources together.
MemorySource
A data source backed by in-memory RecordBatches.
ParquetSource
A data source that reads from a Parquet file.
StreamingDataset
A streaming dataset that loads data lazily in chunks.

Traits§

DataSource
A data source that can produce RecordBatches on demand.