Uses of Class
org.apache.hadoop.hbase.util.MovingAverage
Packages that use org.apache.hadoop.hbase.util.MovingAverage
-
Uses of org.apache.hadoop.hbase.util.MovingAverage in org.apache.hadoop.hbase.util
Subclasses of org.apache.hadoop.hbase.util.MovingAverage in in org.apache.hadoop.hbase.utilModifier and TypeClassDescriptionclass
org.apache.hadoop.hbase.util.ExponentialMovingAverage<T>
EMA is similar toWeightedMovingAverage
in weighted, but the weighting factor decrease exponentially.class
org.apache.hadoop.hbase.util.SimpleMovingAverage<T>
SMA measure the overall average execution time of a specific method.class
org.apache.hadoop.hbase.util.WeightedMovingAverage<T>
Different from SMASimpleMovingAverage
, WeightedMovingAverage gives each data different weight.class
org.apache.hadoop.hbase.util.WindowMovingAverage<T>
Instead of calculate a whole time average, this class focus on the last N.