Package org.apache.spark.sql.columnar
Interface SimpleMetricsCachedBatch
- All Superinterfaces:
- CachedBatch
A 
CachedBatch that stores some simple metrics that can be used for filtering of batches with
 the SimpleMetricsCachedBatchSerializer.
 The metrics are returned by the stats value. For each column in the batch 5 columns of metadata
 are needed in the row.- 
Method SummaryModifier and TypeMethodDescriptionlongorg.apache.spark.sql.catalyst.InternalRowstats()Holds stats for each cached column.Methods inherited from interface org.apache.spark.sql.columnar.CachedBatchnumRows
- 
Method Details- 
sizeInByteslong sizeInBytes()- Specified by:
- sizeInBytesin interface- CachedBatch
 
- 
statsorg.apache.spark.sql.catalyst.InternalRow stats()Holds stats for each cached column. The optionalupperBoundandlowerBoundshould be of the same type as the original column. If they are null, then it is assumed that they are not provided, and will not be used for filtering.- upperBound(optional)
- lowerBound(Optional)
- nullCount:- Int
- rowCount:- Int
- sizeInBytes:- Long
 - Returns:
- (undocumented)
 
 
-