You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SSTables may grow as large as 100GBs. This will require a tradeoff between search using disk-seek vs loading the sstable in memory. Even after using multiple threads, it is difficult to offer high throughput when the key doesn't exist.
A Bloom Filter is a probabilistic data structure that could take a key and say one of:
Maybe the key exists.
The key surely doesn't exist.
In other words, there is a chance of false positives but no chance of false negatives. Here, the rate of false positives is controlled by:
SSTables may grow as large as 100GBs. This will require a tradeoff between search using disk-seek vs loading the sstable in memory. Even after using multiple threads, it is difficult to offer high throughput when the key doesn't exist.
A Bloom Filter is a probabilistic data structure that could take a key and say one of:
In other words, there is a chance of false positives but no chance of false negatives. Here, the rate of false positives is controlled by:
Where1,
Footnotes
https://en.wikipedia.org/wiki/Bloom_filter ↩
The text was updated successfully, but these errors were encountered: