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 Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
fileSizeInBytes()
Returns the size of the partition statistics file in bytes.java.lang.String
path()
Returns fully qualified path to the file.long
snapshotId()
ID of the Iceberg table's snapshot the partition statistics file is associated with.
-
-
-
Method Detail
-
snapshotId
long snapshotId()
ID of the Iceberg table's snapshot the partition statistics file is associated with.
-
path
java.lang.String path()
Returns fully qualified path to the file. Never null.
-
fileSizeInBytes
long fileSizeInBytes()
Returns the size of the partition statistics file in bytes.
-
-