【发布时间】:2021-08-21 04:59:13
【问题描述】:
我需要在一个非常大的表上运行压缩,40% 的磁盘空间是可用的,但是压缩需要很长时间并且填满 100% 的磁盘然后 Cassandra 进程停止,所以我决定运行压缩开始和结束令牌范围,我选择范围:
cassandra@cqlsh> SELECT tokens FROM system.local;
tokens
{'-1086477467151825006', '-6979941880848102278', '-9077716633074993870', '4450419032446811241', '7953145647081579725', '945723047588545683'}
当我通过指定开始和结束令牌范围运行压缩命令时,我收到以下错误:
$nodetool repair -st -1091112185956497009 -et -1164785492893427439 main tbl_evetns
error: Repair job has failed with the error message: [2021-06-02 22:57:42,499] Requested range (-1091112185956497009,-1164785492893427439] intersects a local range ((6717615618706114838,7883825036204854784]) but is not fully contained in one; this would lead to imprecise repair. keyspace: main
-- StackTrace --
java.lang.RuntimeException: Repair job has failed with the error message: [2021-06-02 22:57:42,499] Requested range (-1091112185956497009,-1164785492893427439] intersects a local range ((6717615618706114838,7883825036204854784]) but is not fully contained in one; this would lead to imprecise repair. keyspace: main
at org.apache.cassandra.tools.RepairRunner.progress(RepairRunner.java:116)
at org.apache.cassandra.utils.progress.jmx.JMXNotificationProgressListener.handleNotification(JMXNotificationProgressListener.java:77)
【问题讨论】: