我想增加tombstone_failure_threshold
文件中的cassandra.yaml
值,默认值为100K
我不确定要设置的值。
我已经浏览了一些文档,我看到默认gc_grace_seconds
减少864000
(10天)。如果您的TTL
数据设置为6 days
,那么您可能希望将gc_grace_seconds
更改为604800 (7 days)
以更快删除逻辑删除。但我没有为我的数据设置TTL
。如果我减少gc_grace_seconds
值,是否会影响tombstone_failure_threshold
或更好地更改tombstone_failure_threshold
文件中的cassandra.yaml
值?
`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';
答案 0 :(得分:3)
如果您对群集中的内存使用模式非常有信心,则只应向上更改这些值。