我是cassandra数据库的新手。我正在使用[cqlsh 4.1.1 | Cassandra 2.0.10 | CQL规范3.1.1 |节俭协议19.39.0]。
我想通过使用主键约束和非主键约束来删除特定列家族的记录;
请建议我或给我一个解决方案来实现这一目标。
下面我提到了我的表结构。
CREATE TABLE gb_admin_login_history (
au_id int,
lh_id int,
au_username text,
login_ip_address text,
login_time text,
PRIMARY KEY ((au_id), lh_id)
) WITH bloom_filter_fp_chance=0.010000
AND caching='KEYS_ONLY' AND comment=''
AND dclocal_read_repair_chance=0.100000
AND gc_grace_seconds=864000
AND index_interval=128
AND read_repair_chance=0.000000
AND replicate_on_write='true'
AND populate_io_cache_on_flush='false'
AND default_time_to_live=0 ANDspeculative_retry='99.0PERCENTILE'
AND memtable_flush_period_in_ms=0
AND compaction={'class': 'SizeTieredCompactionStrategy'}
AND compression={'sstable_compression': 'LZ4Compressor'};