Packages that use org.apache.hadoop.hbase.util.MovingAverage
-
class
org.apache.hadoop.hbase.util.ExponentialMovingAverage<T>
EMA is similar to WeightedMovingAverage
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 SMA SimpleMovingAverage
, 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.