Class StatisticsAggrFunctions.HllMerge

java.lang.Object
org.apache.drill.exec.expr.fn.impl.StatisticsAggrFunctions.HllMerge
All Implemented Interfaces:
DrillAggFunc, DrillFunc
Enclosing class:
StatisticsAggrFunctions

public static class StatisticsAggrFunctions.HllMerge extends Object implements DrillAggFunc
The log2m parameter defines the accuracy of the counter. The larger the log2m the better the accuracy where: accuracy = 1.04/sqrt(2^log2m) log2m - the number of bits to use as the basis for the HLL instance The parameter accepts integers in the range [0, 30]
  • Constructor Details

    • HllMerge

      public HllMerge()
  • Method Details

    • setup

      public void setup()
      Description copied from interface: DrillAggFunc
      Initialization for the beginning of the aggregation.
      Specified by:
      setup in interface DrillAggFunc
    • add

      public void add()
      Specified by:
      add in interface DrillAggFunc
    • output

      public void output()
      Specified by:
      output in interface DrillAggFunc
    • reset

      public void reset()
      Specified by:
      reset in interface DrillAggFunc