Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/barrust/count-min-sketch

Count-Min Sketch Implementation in C
https://github.com/barrust/count-min-sketch

c count-mean-min-sketch count-min-sketch data-structures probabilistic probabilistic-programming

Last synced: 16 days ago
JSON representation

Count-Min Sketch Implementation in C

Awesome Lists containing this project

README

        

# count-min-sketch

[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
[![GitHub release](https://img.shields.io/github/v/release/barrust/count-min-sketch.svg)](https://github.com/barrust/count-min-sketch/releases)
[![C/C++ CI](https://github.com/barrust/count-min-sketch/workflows/C/C++%20CI/badge.svg?branch=master)](https://github.com/barrust/count-min-sketch/actions)
[![codecov](https://codecov.io/gh/barrust/count-min-sketch/branch/master/graph/badge.svg)](https://codecov.io/gh/barrust/count-min-sketch)

A Count-Min Sketch implementation in **C**.

Count-Min Sketch is a probabilistic data-structure that takes sub linear space
to store the probable count, or frequency, of occurrences of elements added
into the data-structure. Due to the structure and strategy of storing elements,
it is possible that elements are over counted but not under counted.

To use the library, copy the `src/count_min_sketch.h` and
`src/count_min_sketch.c` files into your project and include it where needed.

## License:
MIT 2017

# Point Query Strategies
To generic method to query the count-min sketch for the number of times an
element was inserted is to return the minimum value from each row in the
data-structure. This is the maximum number of times that it may have been
inserted, but there is a defined bias. This number is always greater than or
equal to the actual value but ***never*** lower.

To help account for this bias, there are two other methods of querying the
data. One is to use the mean of the results. This will result in larger answers,
but is useful when elements can be removed from the count-min sketch.

The other option is to use the count-mean-min query strategy. This strategy
attempts to remove the bias by taking the median value from the results of the
following calculation of each row (where `i` is the bin result of the hash):
`bin[i] - ((number-elements - bin[i]) / (width - 1))`

For a good description of different uses and methods of the count-min sketch,
read [this link](https://highlyscalable.wordpress.com/2012/05/01/probabilistic-structures-web-analytics-data-mining/).

For a **python version**, please check out [pyprobables](https://github.com/barrust/pyprobables)
which has a binary compatible output.

## Main Features
* Ability to add and remove elements from the Count-Min Sketch
* Increment or add `x` elements at once
* Decrement or remove `x` elements at once
* Ability to lookup elements in the data-structure
* Add, remove, or lookup elements based on pre-calculated hashes
* Ability to set depth & width or have the library calculate them based on
error and confidence
* Multiple lookup types:
* ***Minimum:*** largest possible number of insertions by taking the
maximum result
* ***Mean:*** good for when removes and negatives are possible, but
increases the false count
* ***Mean-Min*** attempts to take bias into account; results are less
skewed upwards compared to the mean lookup
* Export and Import count-min sketch to file
* Ability to merge multiple count-min sketches together

## Future Enhancements
* add method to calculate the possible bias (?)
* add do everything directly on disk (?)
* add import / export to hex (?)

## Usage:
``` c
#include
#include "count_min_sketch.h"

CountMinSketch cms;
cms_init(&cms, 10000, 7);

int i, res;
for (i = 0; i < 10; i++) {
res = cms_add(&cms, "this is a test");
}

res = cms_check(&cms, "this is a test");
if (res != 10) {
printf("Error with lookup: %d\n", res);
}
cms_destroy(&cms);
```

## Required Compile Flags
-lm

## Backward Compatible Hash Function
To use the older count-min sketch (v0.1.8 or lower) that utilized the default hashing
algorithm, then change use the following code as the hash function:

``` c
/* NOTE: The caller will free the results */
static uint64_t* original_default_hash(unsigned int num_hashes, const char* str) {
uint64_t *results = (uint64_t*)calloc(num_hashes, sizeof(uint64_t));
char key[17] = {0}; // largest value is 7FFF,FFFF,FFFF,FFFF
results[0] = __fnv_1a(str);
for (unsigned int i = 1; i < num_hashes; ++i) {
sprintf(key, "%" PRIx64 "", results[i-1]);
results[i] = old_fnv_1a(key);
}
return results;
}

static uint64_t old_fnv_1a(const char* key) {
// FNV-1a hash (http://www.isthe.com/chongo/tech/comp/fnv/)
int i, len = strlen(key);
uint64_t h = 14695981039346656073ULL; // FNV_OFFSET 64 bit
for (i = 0; i < len; ++i){
h = h ^ (unsigned char) key[i];
h = h * 1099511628211ULL; // FNV_PRIME 64 bit
}
return h;
}
```

If using only older count-min sketch, then you can update the // FNV_OFFSET 64 bit
to use `14695981039346656073ULL`