我试图删除表格中的某些聚类列。但即使经过多次尝试,数据仍然存在。整个数据保持不变。 表是宽行类型
CREATE TABLE IF NOT EXISTS test.mytable(
key bigint,
lowerbound bigint,
upperbound bigint,
data blob,
PRIMARY KEY (key, lowerbound, upperbound)
) WITH CLUSTERING ORDER BY (lowerbound DESC) AND caching='all' AND compact storage and
compaction={'class': 'LeveledCompactionStrategy'};
我在网上查了一下。但我找不到某些案例。我在网上检查过,有些情况下行键没有被删除,但是值段是空的。但在我的情况下,整个数据保持不变,好像什么都没发生,每次都成功执行删除查询,Cassandra也没有例外。
请建议。