BitFunnel | |
Developer: | Microsoft |
Programming Language: | C++ |
Platform: | Windows, macOS, Ubuntu |
Genre: | Search engine indexing algorithm |
License: | MIT License |
BitFunnel is the search engine indexing algorithm and a set of components used in the Bing search engine,[1] which were made open source in 2016.[2] BitFunnel uses bit-sliced signatures instead of an inverted index in an attempt to reduce operations cost.[3]
Progress on the implementation of BitFunnel was made public in early 2016, with the expectation that there would be a usable implementation later that year.[4] In September 2016, the source code was made available via GitHub. A paper discussing the BitFunnel algorithm and implementation was released as through the Special Interest Group on Information Retrieval of the Association for Computing Machinery in 2017 and won the Best Paper Award.[5]
BitFunnel consists of three major components:
The BitFunnel paper describes the "matching problem", which occurs when an algorithm must identify documents through the usage of keywords. The goal of the problem is to identify a set of matches given a corpus to search and a query of keyword terms to match against. This problem is commonly solved through inverted index
In contrast, BitFunnel represents each searchable item through a signature. A signature is a sequence of bits which describe a Bloom filter of the searchable terms in a given searchable item. The bloom filter is constructed through hashing through several bit positions.
The signature of a document (D) can be described as the logical-or of its term signatures:
Similarly, a query for a document (Q) can be defined as a union:
Additionally, a document D is a member of the set M when the following condition is satisfied:
This knowledge is then combined to produce a formula where M is identified by documents which match the query signature:
These steps and their proofs are discussed in the 2017 paper.
This algorithm is described in the 2017 paper.