Package org.apache.iceberg
Interface PartitionStatisticsFile
- All Known Subinterfaces:
- GenericPartitionStatisticsFile
public interface PartitionStatisticsFile
Represents a partition statistics file that can be used to read table data more efficiently.
 
Statistics are informational. A reader can choose to ignore statistics information. Statistics support is not required to read the table correctly.
- 
Method SummaryModifier and TypeMethodDescriptionlongReturns the size of the partition statistics file in bytes.path()Returns fully qualified path to the file.longID of the Iceberg table's snapshot the partition statistics file is associated with.
- 
Method Details- 
snapshotIdlong snapshotId()ID of the Iceberg table's snapshot the partition statistics file is associated with.
- 
pathString path()Returns fully qualified path to the file. Never null.
- 
fileSizeInByteslong fileSizeInBytes()Returns the size of the partition statistics file in bytes.
 
-