public class ColumnStats
extends java.lang.Object
Modifier and Type | Class and Description |
---|---|
static class |
ColumnStats.MaxTracker<T extends java.lang.Comparable<T>> |
static class |
ColumnStats.MinTracker<T extends java.lang.Comparable<T>> |
Modifier and Type | Field and Description |
---|---|
int |
columnCount
how many columns are there in the row
|
java.util.List<java.nio.ByteBuffer> |
maxColumnNames |
int |
maxLocalDeletionTime |
long |
maxTimestamp |
java.util.List<java.nio.ByteBuffer> |
minColumnNames
max and min column names according to comparator
|
long |
minTimestamp
the largest (client-supplied) timestamp in the row
|
StreamingHistogram |
tombstoneHistogram
histogram of tombstone drop time
|
Constructor and Description |
---|
ColumnStats(int columnCount,
long minTimestamp,
long maxTimestamp,
int maxLocalDeletionTime,
StreamingHistogram tombstoneHistogram,
java.util.List<java.nio.ByteBuffer> minColumnNames,
java.util.List<java.nio.ByteBuffer> maxColumnNames) |
public final int columnCount
public final long minTimestamp
public final long maxTimestamp
public final int maxLocalDeletionTime
public final StreamingHistogram tombstoneHistogram
public final java.util.List<java.nio.ByteBuffer> minColumnNames
public final java.util.List<java.nio.ByteBuffer> maxColumnNames
public ColumnStats(int columnCount, long minTimestamp, long maxTimestamp, int maxLocalDeletionTime, StreamingHistogram tombstoneHistogram, java.util.List<java.nio.ByteBuffer> minColumnNames, java.util.List<java.nio.ByteBuffer> maxColumnNames)
Copyright © 2015 The Apache Software Foundation