HyperLogLog is an algorithm for the count-distinct problem, approximating the number of distinct elements in a multiset.[1] Calculating the exact cardinality of the distinct elements of a multiset requires an amount of memory proportional to the cardinality, which is impractical for very large data sets. Probabilistic cardinality estimators, such as the HyperLogLog algorithm, use significantly less memory than this, but can only approximate the cardinality. The HyperLogLog algorithm is able to estimate cardinalities of > 109 with a typical accuracy (standard error) of 2%, using 1.5 kB of memory.[1] HyperLogLog is an extension of the earlier LogLog algorithm,[2] itself deriving from the 1984 Flajolet–Martin algorithm.[3]
In the original paper by Flajolet et al.[1] and in related literature on the count-distinct problem, the term "cardinality" is used to mean the number of distinct elements in a data stream with repeated elements. However in the theory of multisets the term refers to the sum of multiplicities of each member of a multiset. This article chooses to use Flajolet's definition for consistency with the sources.
The basis of the HyperLogLog algorithm is the observation that the cardinality of a multiset of uniformly distributed random numbers can be estimated by calculating the maximum number of leading zeros in the binary representation of each number in the set. If the maximum number of leading zeros observed is n, an estimate for the number of distinct elements in the set is 2n.[1]
In the HyperLogLog algorithm, a hash function is applied to each element in the original multiset to obtain a multiset of uniformly distributed random numbers with the same cardinality as the original multiset. The cardinality of this randomly distributed set can then be estimated using the algorithm above.
The simple estimate of cardinality obtained using the algorithm above has the disadvantage of a large variance. In the HyperLogLog algorithm, the variance is minimised by splitting the multiset into numerous subsets, calculating the maximum number of leading zeros in the numbers in each of these subsets, and using a harmonic mean to combine these estimates for each subset into an estimate of the cardinality of the whole set.[4]
The HyperLogLog has three main operations: add to add a new element to the set, count to obtain the cardinality of the set and merge to obtain the union of two sets. Some derived operations can be computed using the inclusion–exclusion principle like the cardinality of the intersection or the cardinality of the difference between two HyperLogLogs combining the merge and count operations.
The data of the HyperLogLog is stored in an array of counters (or "registers") that are initialized to 0. Array initialized from a multiset is called HyperLogLog sketch of S.
The add operation consists of computing the hash of the input data with a hash function, getting the first bits (where is ), and adding 1 to them to obtain the address of the register to modify. With the remaining bits compute which returns the position of the leftmost 1, where leftmost position is 1 (in other words: number of leading zeros plus 1). The new value of the register will be the maximum between the current value of the register and .
\begin{align} x&:=h(v)\\ j&:=1+\langlex1x2...xb\rangle2\\ w&:=xb+1xb+2...\\ M[j]&:=max(M[j],\rho(w))\\ \end{align}
The count algorithm consists in computing the harmonic mean of the registers, and using a constant to derive an estimate of the count:
Z=
m | |
(\sum | |
j=1 |
{2-M[j]
\alpham=
infty | |
\left(m\int | |
0 |
\left(log2\left(
2+u | |
1+u |
\right)\right)mdu\right)-1
E=\alphamm2Z
The intuition is that being the unknown cardinality of, each subset will have elements. Then should be close to . The harmonic mean of 2 to these quantities is which should be near . Thus, should be approximately.
Finally, the constant is introduced to correct a systematic multiplicative bias present in due to hash collisions.
The constant is not simple to calculate, and can be approximated with the formula[1]
\alpham ≈ \begin{cases} 0.673,&form=16;\\ 0.697,&form=32;\\ 0.709,&form=64;\\
0.7213 | |
1+1.079/m |
,&form\ge128. \end{cases}
The HyperLogLog technique, though, is biased for small cardinalities below a threshold of . The original paper proposes using a different algorithm for small cardinalities known as Linear Counting.[5] In the case where the estimate provided above is less than the threshold , the alternative calculation can be used:
Additionally, for very large cardinalities approaching the limit of the size of the registers ( for 32-bit registers), the cardinality can be estimated with:
E\star=-232log\left(1-
E | |
232 |
\right)
With the above corrections for lower and upper bounds, the error can be estimated as .
The merge operation for two HLLs () consists in obtaining the maximum for each pair of registers
hllunion[j]=max(hll1[j],hll2[j])
To analyze the complexity, the data streaming
(\epsilon,\delta)
1\pm\epsilon
1-\delta
1.04/\sqrt{m}
O(\epsilon-2loglogn+logn)
The add operation depends on the size of the output of the hash function. As this size is fixed, we can consider the running time for the add operation to be
O(1)
The count and merge operations depend on the number of registers and have a theoretical cost of
O(m)
O(1)
The HyperLogLog++ algorithm proposes several improvements in the HyperLogLog algorithm to reduce memory requirements and increase accuracy in some ranges of cardinalities:[6]
When the data arrives in a single stream, the Historic Inverse Probability or martingale estimator[8] [9] significantly improves the accuracy of the HLL sketch and uses 36% less memory to achieve a given error level. This estimator is provably optimal for any duplicate insensitive approximate distinct counting sketch on a single stream.
The single stream scenario also leads to variants in the HLL sketch construction.HLL-TailCut+ uses 45% less memory than the original HLL sketch but at the cost of being dependent on the data insertion order and not being able to merge sketches.[10]