Package org.apache.iceberg
Interface ContentScanTask<F extends ContentFile<F>>
-
- Type Parameters:
F
- the Java class of the content file
- All Superinterfaces:
PartitionScanTask
,ScanTask
,java.io.Serializable
- All Known Subinterfaces:
AddedRowsScanTask
,DataTask
,DeletedDataFileScanTask
,DeletedRowsScanTask
,FileScanTask
,PositionDeletesScanTask
- All Known Implementing Classes:
BaseFileScanTask
public interface ContentScanTask<F extends ContentFile<F>> extends ScanTask, PartitionScanTask
A scan task over a range of bytes in a content file.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default long
estimatedRowsCount()
The estimated number of rows produced by this scan task.F
file()
Thefile
to scan.long
length()
The number of bytes to scan from thestart()
position in the file.default StructLike
partition()
Returns the value of the partition for this scan taskExpression
residual()
Returns the residual expression that should be applied to rows in this file scan.default long
sizeBytes()
The number of bytes that should be read by this scan task.long
start()
The starting position of this scan range in the file.-
Methods inherited from interface org.apache.iceberg.PartitionScanTask
spec
-
Methods inherited from interface org.apache.iceberg.ScanTask
asCombinedScanTask, asDataTask, asFileScanTask, filesCount, isDataTask, isFileScanTask
-
-
-
-
Method Detail
-
partition
default StructLike partition()
Description copied from interface:PartitionScanTask
Returns the value of the partition for this scan task- Specified by:
partition
in interfacePartitionScanTask
-
sizeBytes
default long sizeBytes()
Description copied from interface:ScanTask
The number of bytes that should be read by this scan task.
-
start
long start()
The starting position of this scan range in the file.- Returns:
- the start position of this scan range
-
length
long length()
The number of bytes to scan from thestart()
position in the file.- Returns:
- the length of this scan range in bytes
-
residual
Expression residual()
Returns the residual expression that should be applied to rows in this file scan.The residual expression for a file is a filter expression created by partially evaluating the scan's filter using the file's partition data.
- Returns:
- a residual expression to apply to rows from this scan
-
estimatedRowsCount
default long estimatedRowsCount()
Description copied from interface:ScanTask
The estimated number of rows produced by this scan task.- Specified by:
estimatedRowsCount
in interfaceScanTask
- Returns:
- the estimated number of produced rows
-
-