Skip to main content

An efficient and scalable bloom filter module built in pure python.

Project description

Bloom Filter

\bloom fil-ter\ Noun

  1. Space-efficient probabilistic data structure that is used to test whether an element is a member of a set.
  2. A fun side project!

About bloomy

Bloomy is a bloom filter module designed to be both lightweight and scalable. Bloomy does not use any external libraries, and scales internally to match scenarios. Bloomy also designed to reduce the rate of false positives. This is done my applying md5 hashing and bit rotation to generate k unique 8 byte hash values, and then using golden ratio compression for even distribution.

Advantages of bloom filters

  • Uses bit arrays to store the presence of items. This significantly reduces the in memory storage.
  • Implements binary and bit masking operations. This reduces the runtime of add and contains operations to practically O(1).
  • Raw types can be used.

Operations

___init__(m,[array of additional hash functions])

		 params: (optional) size of bit array, (optional) additional hash functions 
		 return: bloomFilter object 

Create a bit array bits with m bits cleared to 0, and saves k number of hash functions. M has a default of 1000 and the filter comes with five unique default hash functions.

add(value)

		 params: object to add to the bloomFilter set
		 return: None

Takes in a value and hashes it k times to obtain a list of indexes. For each index obtained by a given hash function, set the value in the bit array bits to 1.

__contains__(value)

		 params: object to search for in the set 
		 return: True/False indicating presence in the set

Takes in a value and hashes it k times to obtain a list of unique indexes. Create a bit mask with the initial value 0. For each index obtained by a hash function, set that index in the mask 1. Perform the following binary operation bits AND mask, and if the value performed by that operation equals the mask, we can conclude that the value probably exists in the bloom filter.

addHashFunction(fn)

		 params: additional hash function to add
		 return: None

Takes in a function as a parameter, and adds this function to the existing list of hash functions used by the bloom filter. The function fn has to take the form fn(value) where value is the item to hash, and the function must return an integer between 0 and the upper index bound. All other following parameters must have default values.

The function also has to be able to provide consistent values for the given input. There is no randomization involved, rather this is a pure key transformation function. Any compression function may be used, as long as it limits the key space within the upper bound of the bit array.

fingerprint(value)

		 params: value to inspect fingerprint
		 return: array (len = k) of hashed values 

Takes in a value and returns an array of the hashed values created by the list of hash functions. Used to debug and inspect the behavior of the hashing mechanism.

mask([ints])

		 params: integer values to use to create bit mask
		 return: integer bit mask

Creates a bit masked integer with 1 in the indexes specified by the parameter integer array.


Example (k = 3, m = 12)

0. constructor 

bit array: 
	--- --- --- --- --- --- --- --- --- --- --- --- --- 
 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | ...
	--- --- --- --- --- --- --- --- --- --- --- --- --- 

1. add("Hello world") => 00, 03, 04

bit array: 
	--- --- --- --- --- --- --- --- --- --- --- --- --- 
 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | ...
	--- --- --- --- --- --- --- --- --- --- --- --- --- 

2. contains("Hello World") => 00,03,04 

bit array: 
	--- --- --- --- --- --- --- --- --- --- --- --- --- 
 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | ...
	--- --- --- --- --- --- --- --- --- --- --- --- --- 
	 ||          ||  ||
	 ||==========||==||=================> 1,1,1 = True 

3. contains("java is the best") => 02,03,07 

bit array: 
	--- --- --- --- --- --- --- --- --- --- --- --- --- 
 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | ...
	--- --- --- --- --- --- --- --- --- --- --- --- --- 
					 ||  ||              ||
					 ||==||==============||=====> 0,1,0 = False

Thank you!!

Thank you for checking this out! Please feel free to reach out via email sdcroche@ncsu.edu, or twitter @shmam_

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bloomy-0.0.2.tar.gz (4.8 kB view hashes)

Uploaded Source

Built Distribution

bloomy-0.0.2-py3-none-any.whl (5.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page