0
我是cassandra的新手。我有一個複合主鍵的表。該表的描述是cassandra cql查詢條件在rowkey和聚類列
CREATE TABLE testtable (
foid bigint,
id bigint,
severity int,
category int,
ack boolean,
PRIMARY KEY (foid, id, severity, category)
) WITH
bloom_filter_fp_chance=0.010000 AND
caching='KEYS_ONLY' AND
comment='' AND
dclocal_read_repair_chance=0.000000 AND
gc_grace_seconds=864000 AND
index_interval=128 AND
read_repair_chance=0.100000 AND
replicate_on_write='true' AND
populate_io_cache_on_flush='false' AND
default_time_to_live=0 AND
speculative_retry='NONE' AND
memtable_flush_period_in_ms=0 AND
compaction={'class': 'SizeTieredCompactionStrategy'} AND
compression={'sstable_compression': 'LZ4Compressor'};
我的要求是,我需要查詢與foid
表,在條件和id
與範圍的條件和severity
與條件
所以,當我試圖下面的查詢
select * from testtable where foid in (5,6) and id>10 and severity in (5);
我得到了錯誤消息作爲
select * from testtable where(5,6)and id> 10 and severity in(5);
或甚至severity
列上的相等條件對我來說就足夠了,這也不起作用。
有什麼辦法,同樣可以實現
我與二級指標受審severity
和category
過,但這並沒有給我任何積極。
我也曾經想過和你描述的一樣。而且最後的解決方案本身也適用於某些場景。由於過濾的嚴重性列包括在內,因此是動態的。有情況我不會使用嚴重性列。任何如你所說,我試圖執行查詢限制foid和id和排序在客戶端進行剩餘的篩選 – Balachandar