gpt4 book ai didi

cassandra - 如何增加 tombstone_failure_threshold 值

转载 作者:行者123 更新时间:2023-12-03 09:04:02 26 4
gpt4 key购买 nike

我想增加 cassandra.yaml 文件中的 tombstone_failure_threshold 值,默认值为 100K

我不确定要设置的值。

我浏览了一些文档,我看到减少默认的gc_grace_seconds864000(10天)。如果您的 TTL 数据设置为 6 天,那么您可能需要将 gc_grace_seconds 更改为 604800(7 天)以便尽早拆除墓碑。但我没有为我的数据设置TTL。如果我减少 gc_grace_seconds 值,是否会影响 tombstone_failure_threshold 或者更好地更改 cassandra.yaml 中的 tombstone_failure_threshold 值文件?

`CREATE TABLE test.topics (
topic_name text PRIMARY KEY,
latest_time_stamp double
) WITH bloom_filter_fp_chance = 0.01
AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'}
AND comment = ''
AND compaction = {'class': 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy', 'max_threshold': '32', 'min_threshold': '4'}
AND compression = {'chunk_length_in_kb': '64', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'}
AND crc_check_chance = 1.0
AND dclocal_read_repair_chance = 0.1
AND default_time_to_live = 0
AND gc_grace_seconds = 864000
AND max_index_interval = 2048
AND memtable_flush_period_in_ms = 0
AND min_index_interval = 128
AND read_repair_chance = 0.0
AND speculative_retry = '99PERCENTILE';

最佳答案

  • tombstone_warn_threshold(默认值:1000):如果查询扫描的逻辑删除数量超过此数量,Cassandra 将记录一条警告(这可能会传播到您的监控系统并向您发送警报)。
  • tombstone_failure_threshold(默认值:100000):如果查询扫描的逻辑删除数量超过此数量,Cassandra 将中止查询。这是一种防止一个或多个节点内存不足和崩溃的机制。

只有当您对集群中的内存使用模式确实有信心时,才应向上更改这些值。

关于cassandra - 如何增加 tombstone_failure_threshold 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48538746/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com