https://stackoverflow.com/a/47837940/260805 hints that it should be possible. I would like to disable it for a longer period of times (~2 days) when enabling incremental repairs.
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
(Disclaimer: I'm a ScyllaDB employee)
As far as I know you can disable autocompaction in the following ways:
- For a column family (Table), by setting its strategy to NullCompactionStrategy. (I think this one is supported only in Scylla, but not in Cassandra)
- Using nodetool:
$ nodetool <options> disableautocompaction -- <keyspace> <table> ...
(I think this one is supported only in Cassandra, but not in Scylla)