Uses of Class
org.apache.hadoop.hbase.util.MovingAverage

Packages that use org.apache.hadoop.hbase.util.MovingAverage
Package
Description
 
  • 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.util
    Modifier and Type
    Class
    Description
    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.