I'd like to know about specific problems you - the SO reader - have solved using bloom filters and what libraries/frameworks you used if you didn't roll your own.

Questions:

  • What problems have you used bloom filters to solve?
  • What libraries/frameworks did you use?

I'm looking for first-hand experiences, so please do not answer unless you have that.

link|improve this question
Poll questions should be community wiki. – danben Jun 19 '10 at 11:34
danben: Good point! Changed to community wiki. – knorv Jun 19 '10 at 11:36
Stop retagging this as "computer science". Tags are not meant for you to advertise your question, they are meant to help other users navigate the site. Tags such as "computer science" and "programming" are not helpful to anyone. – danben Jun 21 '10 at 16:27
3  
danben: If probabilistic data structures does not fit under the "computer science" tag, then what does? BTW, see the tags used in this blog post: mikecvet.wordpress.com/2010/04/21/bloom-filters - in summary: please stop changing the tags of my question :-) – knorv Jun 21 '10 at 17:11
1  
Good question! The bloom filter is fascinating, but so far I haven't found a compelling application for it. – Qwertie Jun 21 '10 at 19:12
feedback

6 Answers

up vote 7 down vote accepted
+50

I used an own implementation of bloom filter. This is pretty easy, but you need good hash functions.

I usually use them as an optimization to avoid disk reads. If the program wants to read a value from disk or search for a value on disk, I use a bloom filter of all values to avoid the disk read if the bloom filter returns a negative answer. The program would also be correct without the bloom filter, but when there is a signification chance that the value is not stored on disk -- and therefore the disk read would be useless -- the bloom filter is a nice optimization.

In another scenario I used a bloom filter to hold a "set" of all values that have been touched in some time period. In that specific situation, I did't care about the false positives, it was more important that each value actually touched is "covered". One nice aspect of bloom filters here are that the have a constant size in contrast to a read set. Ok, the error rate might go up, but in that situation I could live with that.

link|improve this answer
feedback

I used PyBloom to build a bloom filter that represents the set of all Wikipedia article titles. One nice thing about that implementation is that it takes parameters for the error rate and the size of the set, so if you know in advance how large your set will be you can set the error rate very low.

I was impressed that I could build the set of ~7M entries in about 5 minutes, and I can load it from disk in 0.1s.

link|improve this answer
Great answer! Please keep the tags unchanged. "bloom-filter" only is not sufficient. – knorv Jun 19 '10 at 11:40
Looking over them again, I am ok with language-agnostic and data-structures. "computer science" is much too broad and "algorithm" is not really applicable. Tags are for categorizing questions to assist future viewers - if we shoved every question into every tag it would devalue them. – danben Jun 19 '10 at 20:28
1  
Why did you want to construct a set of article titles, without needing to store the actual titles, and allowing false positives? – Qwertie Jun 21 '10 at 19:13
1  
@Qwertie - I am doing entity extraction over unstructured text. I use a probabilistic algorithm, part of which matches n-grams against Wikipedia article titles. Storing the actual titles is unnecessary for obvious reasons, and false positives are ok because the other parts of the algorithm will cause those to fall to the bottom of the ranking. – danben Jun 22 '10 at 14:27
feedback

http://blog.rapleaf.com/dev/2007/09/05/bloomfilter/

While I don't have anything directly to do with this,I strongly feel the information on that link is definitely relevant to the discussion over here

link|improve this answer
feedback

Bloom filters can come in handy in bioinformatics, for example, they can be used to classify DNA sequences (which are essentially k-mers with an alphabet size of 4).

link|improve this answer
feedback

Bloom filters power the MS VC++ 'minimal rebuild' feature (http://msdn.microsoft.com/en-us/library/kfz8ad09(VS.80).aspx).

MR uses a BF to represent, in a compact bitset, all the fine grained dependencies of a source file. It's a several orders of magnitude space reduction over keeping exact fine grained dependencies.

MR also uses BFs to summarize declarations / contributions of each header, and BF intersection to determine a signature of how (at a fine grain) a given header has changed after an edit; and a further BF intersection to determine if a source file has no dependencies on any changed contributions of a given header file.

link|improve this answer
feedback

I used them in my thesis actually: jshs_final_national_pdf (see Section 3/page 10).

link|improve this answer
Link gives 404 response. – dmeister Aug 19 '11 at 9:14
1  
Thanks! Fixed it. – sbirch Aug 22 '11 at 7:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.