Cassandra創建索引
CREATE INDEX
命令用於在用戶指定的列上創建一個索引。 如果您選擇索引的列已存在數據,則Cassandra會在「create index
」語句執行後在指定數據列上創建索引。
語法:
CREATE INDEX <identifier> ON <tablename>
創建索引的規則
- 由於主鍵已編入索引,因此無法在主鍵上創建索引。
- 在Cassandra中,不支持集合索引。
- 沒有對列進行索引,Cassandra無法過濾該列,除非它是主鍵。
示例:
讓我們舉個例子來演示如何在列上創建索引。 在這裏,我們爲表「student
」中的「student_name
」列創建一個索引。
cqlsh:yiibai_ks> SELECT * FROM student;
student_id | student_fees | student_name
------------+--------------+--------------
(0 rows)
cqlsh:yiibai_ks>
執行以下命令創建一個索引 -
CREATE INDEX name ON student (student_name);
上面語句中,是在「student_name
」列上創建了索引。
cqlsh:yiibai_ks> CREATE INDEX name ON student (student_name);
cqlsh:yiibai_ks> describe student;
CREATE TABLE yiibai_ks.student (
student_id int PRIMARY KEY,
student_fees varint,
student_name text
) WITH bloom_filter_fp_chance = 0.01
AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'}
AND comment = ''
AND compaction = {'class': 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy', 'max_threshold': '32', 'min_threshold': '4'}
AND compression = {'chunk_length_in_kb': '64', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'}
AND crc_check_chance = 1.0
AND dclocal_read_repair_chance = 0.1
AND default_time_to_live = 0
AND gc_grace_seconds = 864000
AND max_index_interval = 2048
AND memtable_flush_period_in_ms = 0
AND min_index_interval = 128
AND read_repair_chance = 0.0
AND speculative_retry = '99PERCENTILE';
CREATE INDEX name ON yiibai_ks.student (student_name);
cqlsh:yiibai_ks>
注意:您可以再次使用創建索引查詢來驗證索引是否已創建。 它將顯示已創建索引的消息。