6

nodetool compact 的文档说

此命令在使用 SizeTieredCompactionStrategy 和 DateTieredCompactionStrategy 的表上启动压缩过程。您可以指定用于压缩的键空间。

但它对 DateTieredCompactionStrategy 有什么作用?

附带问题:什么是-s, --split-output参数?解释为:Use -s to not create a single big file。我很困惑 - 这不是 的目的nodetool compact吗?

4

1 回答 1

4

即使使用 DTCS,没有标志的 Nodetool compact 仍然会创建一个大的单个文件。

-s, --split-output 选项仅从 c* 2.2 及更高版本开始。

news.txt 声明:

 +     It is also possible to split output when doing a major compaction with
 +     STCS - files will be split in sizes 50%, 25%, 12.5% etc of the total size.
 +     This might be a bit better than old major compactions which created one big
 +     file on disk.

在 DTCS -s 上不会做任何特别的事情(仍然会创建一个大的 sstable)

于 2015-12-29T17:06:50.530 回答