从cassandra cli中删除行键

时间:2014-01-15 07:07:50

标签: nosql cassandra cassandra-cli column-family row-key

我将我的列族gcgraceseconds设置为0; 但仍然没有删除rowkey,它仍保留在我的列族中

create column family workInfo123
with column_type = 'Standard'
  and comparator = 'UTF8Type'
  and default_validation_class = 'UTF8Type'
  and key_validation_class = 'UTF8Type'
  and read_repair_chance = 0.1
  and dclocal_read_repair_chance = 0.0
  and populate_io_cache_on_flush = true
  and gc_grace = 0 
  and min_compaction_threshold = 4
  and max_compaction_threshold = 32
  and replicate_on_write = true
  and compaction_strategy = 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy'
  and caching = 'KEYS_ONLY'
  and default_time_to_live = 0
  and speculative_retry = 'NONE'
  and compression_options = {'sstable_compression' : 'org.apache.cassandra.io.compress.LZ4Compressor'}
  and index_interval = 128;

见下面的

视图
[default@winoriatest] list workInfo123;
Using default limit of 100
Using default cell limit of 100
-------------------
RowKey: a
-------------------
RowKey: xx

2 Rows Returned.
Elapsed time: 17 msec(s).

我正在使用cassandra -cli 我应该改变其他任何东西

更新: -

使用./nodetool -host 127.0.0.1 compact

[default@winoriatest] list workInfo123;
Using default limit of 100
Using default cell limit of 100
-------------------
RowKey: xx

2 Rows Returned.
Elapsed time: 11 msec(s).

为什么xx仍然存在?

2 个答案:

答案 0 :(得分:5)

当您在Cassandra中删除一行时,它不会立即被删除。相反,它标有墓碑。结果是,您仍然可以获得密钥的结果,但不会传递任何列。墓碑是必需的,因为

  1. Cassandra数据文件一旦“满”就变为只读;墓碑将添加到包含已删除行的当前打开的数据文件中。
  2. 您必须让群集有机会将删除传播到包含该行副本的所有节点。
  3. 要删除行及其墓碑,需要进行压缩。此过程重新组织数据文件,当它执行此操作时,它会修剪已删除的行。也就是说,如果已达到墓碑的GC宽限期。对于单节点(!)群集,可以将宽限期设置为0,因为删除不必传播到任何其他节点(在您发出删除的时间点可能已关闭)。

    如果要强制删除已删除的行,可以通过nodetool实用程序触发刷新(与数据文件同步内存)和主要压缩。 E.g。

    ./nodetool flush your_key_space the_column_family && ./nodetool compact your_key_space the_column_family
    

    压缩完成后,删除的行应该真正消失。

答案 1 :(得分:1)

默认GC宽限期为10天(表示846000秒),以便立即删除rowkey

UPDATE COLUMN FAMILY column_family_name with GC_GRACE= 0;

按照nodetool flush和compact操作执行上面的cli查询。