パフォーマンスを最適化するためにいくつかのパラメーターを調整するためにcassandraymlを読んでいます。
# Throttles compaction to the given total throughput across the entire
# system. The faster you insert data, the faster you need to compact in
# order to keep the sstable count down, but in general, setting this to
# 16 to 32 times the rate you are inserting data is more than sufficient.
# Setting this to 0 disables throttling. Note that this account for all types
# of compaction, including validation compaction.
compaction_throughput_mb_per_sec: 16
ここで、cassandraは、「compaction_throughput_mb_per_sec」をデータ挿入の16〜32倍の速度に保つことを推奨しています。非常に高速でデータを挿入するバルクローダーを使用してデータを挿入しています。この設定を変更する必要がありますか?または、そのままにしておく必要がありますか?