aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/main/java/com/yahoo/searchlib/aggregation/hll/HyperLogLog.java
blob: d5147929f3b01f5e4c8c0d7eaf3ab9924e772b48 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.searchlib.aggregation.hll;

/**
 * Contain constants relevant for HyperLogLog classes.
 *
 * @author bjorncs
 */
public interface HyperLogLog {
    /**
     * Default HLL precision.
     */
    int DEFAULT_PRECISION = 10;
    /**
     * Threshold to convert sparse sketch to normal sketch.
     */
    int SPARSE_SKETCH_CONVERSION_THRESHOLD = 256;
}