Package org.apache.iceberg.parquet
Interface VectorizedReader<T>
- 
- All Known Implementing Classes:
- BaseBatchReader,- ColumnarBatchReader,- VectorizedArrowReader,- VectorizedArrowReader.ConstantVectorReader
 
 public interface VectorizedReader<T>Interface for vectorized Iceberg readers.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclose()Release any resources allocated.Tread(T reuse, int numRows)Reads a batch of type @param <T> and of size numRowsvoidsetBatchSize(int batchSize)voidsetRowGroupInfo(org.apache.parquet.column.page.PageReadStore pages, java.util.Map<org.apache.parquet.hadoop.metadata.ColumnPath,org.apache.parquet.hadoop.metadata.ColumnChunkMetaData> metadata, long rowPosition)Sets the row group information to be used with this reader
 
- 
- 
- 
Method Detail- 
readT read(T reuse, int numRows) Reads a batch of type @param <T> and of size numRows- Parameters:
- reuse- container for the last batch to be reused for next batch
- numRows- number of rows to read
- Returns:
- batch of records of type @param <T>
 
 - 
setBatchSizevoid setBatchSize(int batchSize) 
 - 
setRowGroupInfovoid setRowGroupInfo(org.apache.parquet.column.page.PageReadStore pages, java.util.Map<org.apache.parquet.hadoop.metadata.ColumnPath,org.apache.parquet.hadoop.metadata.ColumnChunkMetaData> metadata, long rowPosition)Sets the row group information to be used with this reader- Parameters:
- pages- row group information for all the columns
- metadata- map of- ColumnPath->- ColumnChunkMetaDatafor the row group
- rowPosition- the row group's row offset in the parquet file
 
 - 
closevoid close() Release any resources allocated.
 
- 
 
-