作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
布隆过滤器
When data is requested, the Bloom filter checks if the row exists before doing disk I/O.
Read Repair perform a digest query on all replicas for that key
最佳答案
bloom_filter_fp_chance 和 read_repair_chance 控制两个不同的东西。通常,您会将它们设置为默认值,这对于大多数典型用例来说应该可以很好地工作。
bloom_filter_fp_chance 控制存储在磁盘上的 SSTable 的布隆过滤器数据的精度。布隆过滤器保存在内存中,当您进行读取时,Cassandra 将检查布隆过滤器以查看哪些 SSTable 可能具有您正在读取的键的数据。布隆过滤器通常会给出误报,当您实际阅读 SSTable 时,结果发现 SSTable 中不存在 key ,阅读它是在浪费时间。用于布隆过滤器的精度越高,它给出的误报就越少(但它需要的内存越多)。
从文档:
0 Enables the unmodified, effectively the largest possible, Bloom filter
1.0 Disables the Bloom Filter
The recommended setting is 0.1. A higher value yields diminishing returns.
关于cassandra - 如何理解Cassandra中的bloom_filter_fp_chance和read_repair_chance,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31785110/
我是一名优秀的程序员,十分优秀!