Package io.delta.kernel.metrics
Interface FileSizeHistogramResult
public interface FileSizeHistogramResult
Stores the file size histogram information to track file size distribution and their counts.
-
Method Summary
Modifier and TypeMethodDescriptionlong[]
The total number of files in each bin ofgetSortedBinBoundaries()
long[]
Sorted list of bin boundaries where each element represents the start of the bin (inclusive) and the next element represents the end of the bin (exclusive).long[]
The total number of bytes in each bin ofgetSortedBinBoundaries()
-
Method Details
-
getSortedBinBoundaries
long[] getSortedBinBoundaries()Sorted list of bin boundaries where each element represents the start of the bin (inclusive) and the next element represents the end of the bin (exclusive). -
getFileCounts
long[] getFileCounts()The total number of files in each bin ofgetSortedBinBoundaries()
-
getTotalBytes
long[] getTotalBytes()The total number of bytes in each bin ofgetSortedBinBoundaries()
-