Puneet Varma (Editor)

Count distinct problem

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

In computer science, the count-distinct problem (also known in applied mathematics as the cardinality estimation problem) is the problem of finding the number of distinct elements in a data stream with repeated elements. This is a well-known problem with numerous applications. The elements might represent IP addresses of packets passing through a router, unique visitors to a web site, elements in a large database, motifs in a DNA sequence, or elements of RFID/sensor networks.

Contents

Formal definition

Instance: A stream of elements x 1 , x 2 , , x s with repetitions, and an integer m . Let n be the number of distinct elements, namely n = | { x 1 , x 2 , , x s } | , and let these elements be { e 1 , e 2 , , e n } . Objective: Find an estimate n ^ of n using only m storage units, where m n .

An example of an instance for the cardinality estimation problem is the stream: a , b , a , c , d , b , d . For this instance, n = | { a , b , c , d } | = 4 .

Naive solution

The naive solution to the problem is as follows:

Initialize a counter, c, to zero, c 0 . Initialize an efficient dictionary data structure, D, such as hash table or search tree in which insertion and membership can be performed quickly. For each element x i , a membership query is issued. If x i is not a member of D ( x i D ) Add x i to D Increase c by one, c c + 1 Otherwise ( x i D ) do nothing. Output n = c .

As long as the number of distinct elements is not too big, D fits in main memory and an exact answer can be retrieved. However, this approach does not scale for bounded storage, or if the computation performed for each element x i should be minimized. In such a case, several streaming algorithms have been proposed that use a fixed number of storage units.

Streaming algorithms

To handle the bounded storage constraint, streaming algorithms use a randomization to produce a non-exact estimation of the distinct number of elements, n . State-of-the-art estimators hash every element e j into a low-dimensional data sketch using a hash function, h ( e j ) . The different techniques can be classified according to the data sketches they store.

Min/max sketches

Min/max sketches store only the minimum/maximum hashed values. Examples of known min/max sketch estimators: Chassaing et al. presents max sketch which is the minimum-variance unbiased estimator for the problem. The continuous max sketches estimator is the maximum likelihood estimator. The estimator of choice in practice is the HyperLogLog algorithm.

The intuition behind such estimators is that each sketch carries information about the desired quantity. For example, when every element e j is associated with a uniform RV, h ( e j ) U ( 0 , 1 ) , the expected minimum value of h ( e 1 ) , h ( e 2 ) , , h ( e n ) is 1 / ( n + 1 ) . The hash function guarantees that h ( e j ) is identical for all the appearances of e j . Thus, the existence of duplicates does not affect the value of the extreme order statistics.

There are other estimation techniques other than min/max sketches. The first paper on count-distinct estimation by Flajolet et al. describes a bit pattern sketch. In this case, the elements are hashed into a bit vector and the sketch holds the logical OR of all hashed values. The first asymptotically space- and time-optimal algorithm for this problem was given by Daniel M. Kane, Jelani Nelson, and David P. Woodruff.

Bottom-m sketches

Bottom-m sketches are a generalization of min sketches, which maintain the m minimal values, where m 1 . See Cosma et al. for a theoretical overview of count-distinct estimation algorithms, and Metwally for a practical overview with comparative simulation results.

Weighted count-distinct problem

In its weighted version, each element is associated with a weight and the goal is to estimate the total sum of weights. Formally,

Instance: A stream of weighted elements x 1 , x 2 , , x s with repetitions, and an integer m . Let n be the number of distinct elements, namely n = | { x 1 , x 2 , , x s } | , and let these elements be { e 1 , e 2 , , e n } . Finally, let w j be the weight of e j . Objective: Find an estimate w ^ of w = j = 1 n w j using only m storage units, where m n .

An example of an instance for the weighted problem is: a ( 3 ) , b ( 4 ) , a ( 3 ) , c ( 2 ) , d ( 3 ) , b ( 4 ) , d ( 3 ) . For this instance, e 1 = a , e 2 = b , e 3 = c , e 4 = d , the weights are w 1 = 3 , w 2 = 4 , w 3 = 2 , w 4 = 3 and w j = 12 .

As an application example, x 1 , x 2 , , x s could be IP packets received by a server. Each packet belongs to one of n IP flows e 1 , e 2 , , e n . The weight w j can be the load imposed by flow e j on the server. Thus, j = 1 n w j represents the total load imposed on the server by all the flows to which packets x 1 , x 2 , , x s belong.

Solving the weighted count-distinct problem

Any extreme order statistics estimator (min/max sketches) for the unweighted problem can be generalized to an estimator for the weighted problem . For example, the weighted estimator proposed by Cohen et al. can be obtained when the continuous max sketches estimator is extended to solve the weighted problem. In particular, the HyperLogLog algorithm can be extended to solve the weighted problem. The extended HyperLogLog algorithm offers the best performance, in terms of statistical accuracy and memory usage, among all the other known algorithms for the weighted problem.

References

Count-distinct problem Wikipedia