Class FrameReaderDeltaParallel


public class FrameReaderDeltaParallel extends FrameReaderDelta
Parallel native Delta Lake frame reader. Delta tables are stored as one or more parquet data files; this reader decodes those files concurrently (one task per data file) and assembles them into a column-major FrameBlock in the original file order.

It mirrors ReaderDeltaParallel (the matrix variant) but produces typed column Arrays instead of a dense double[]. As with the matrix reader, the expensive part of a Delta read is the per-file parquet decode, so parallelizing across data files is the natural speedup. A table backed by a single data file cannot be split this way, so the reader transparently falls back to the sequential FrameReaderDelta.