我正在尝试找出Bloomfilter的最佳配置。bloomfilter值应该是什么?有没有什么公式可以根据节点、数据大小、读写频率计算出最优数量?
发布于 2013-10-21 08:33:50
适当的布隆过滤器设置比其他设置更依赖于内存。低布隆过滤器设置降低了误报的机会,但代价是需要更多内存。
有关Datastax的说明,请参阅http://www.datastax.com/docs/1.1/operations/tuning#tuning-bloomfiltershttp://www.datastax.com/docs/1.1/operations/tuning#tuning-bloomfilters
为了了解幕后到底发生了什么,我推荐我的前教授写的以下书:http://infolab.stanford.edu/~ullman/mmds/book.pdf#page=154
https://stackoverflow.com/questions/19454926
复制相似问题