Class StatisticsDisplayFormatter
- java.lang.Object
-
- org.apache.accumulo.core.util.format.DefaultFormatter
-
- org.apache.accumulo.core.util.format.AggregatingFormatter
-
- org.apache.accumulo.core.util.format.StatisticsDisplayFormatter
-
public class StatisticsDisplayFormatter extends AggregatingFormatter
Does not show contents from scan, only displays statistics. Beware that this work is being done client side and this was developed as a utility for debugging. If used on large result sets it will likely fail.
-
-
Field Summary
-
Fields inherited from class org.apache.accumulo.core.util.format.DefaultFormatter
config
-
-
Constructor Summary
Constructors Constructor Description StatisticsDisplayFormatter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidaggregateStats(Map.Entry<Key,Value> entry)Generate statistics from eachMap.Entry, called for each entry to be iterated over.protected StringgetStats()Finalize the aggregation and return the result.-
Methods inherited from class org.apache.accumulo.core.util.format.AggregatingFormatter
next
-
Methods inherited from class org.apache.accumulo.core.util.format.DefaultFormatter
appendText, checkState, formatEntry, formatEntry, formatEntry, formatEntry, getScannerIterator, hasNext, initialize, isDoTimestamps, remove
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Iterator
forEachRemaining
-
-
-
-
Method Detail
-
aggregateStats
protected void aggregateStats(Map.Entry<Key,Value> entry)
Description copied from class:AggregatingFormatterGenerate statistics from eachMap.Entry, called for each entry to be iterated over.- Specified by:
aggregateStatsin classAggregatingFormatter- Parameters:
entry- the next entry to aggregate
-
getStats
protected String getStats()
Description copied from class:AggregatingFormatterFinalize the aggregation and return the result. Called once at the end.- Specified by:
getStatsin classAggregatingFormatter- Returns:
- the aggregation results, suitable for printing to the console
-
-