A Count Min Sketch is a specialized probabilistic data structure optimized for approximating the frequency of events in data streams using limited memory.
It provides a frequency table allowing incrementing counters associated with given items. It relies on hash functions to map items randomly across a fixed number of buckets, colliding items into the same buckets.
Count Min Sketches leverage collision resistance properties of hash functions to provide compact frequency estimates with strong guarantees. They are useful for queries like data pruning that filter data based on frequency thresholds.
A Count Min Sketch consists of a 2D array with w columns and d rows along with hash functions. For each new item, the hash functions map it to one element in every row to increment. To estimate an item's frequency, retrieve the minimum counter value in all rows mapped to by the item's hashes.
Collisions cause overcounting, but taking the minimum provides an upper bound estimate. More columns and rows yield higher accuracy at the cost of space.
Count Min Sketches provide memory-efficient approximate counting with strong accuracy guarantees compared to storing exact counts. They are useful for tracking frequent items, cardinality estimation, analytics on massive data streams using limited memory.
They avoid storing keys explicitly like in a hash table, using only hash values for lookups. This provides compact storage for frequency estimation.
Unlike a hash table storing keys explicitly, a Count Min Sketch uses hash values to Probabilistically estimate item frequencies and counts. This provides:
Some tradeoffs versus storing exact counts:
Count Min Sketch shines for:
Data pruning refers to database techniques that eliminate irrelevant data during query processing to minimize resource usage and improve performance.
Read more ->Hash functions are algorithms that map data of arbitrary size to fixed-size values called hashes in a deterministic, one-way manner for purposes like data integrity and database lookup.
Read more ->Collision resistance is the property of cryptographic hash functions to minimize chances of different inputs mapping to the same output hash, making it difficult to intentionally cause collisions.
Read more ->