本文为您介绍在Hologres中聚簇索引Clustering Key使用的相关内容。
Clustering Key介绍
Hologres会按照聚簇索引在文件内对数据进行排序,建立聚簇索引能够加速在索引列上的范围和过滤查询。设置Clustering Key的语法如下,需要建表时指定。
call set_table_property('<tablename>', 'clustering_key', '[<columnName>{:asc} [,...]]');
参数说明:参数 | 说明 |
table_name | 设置聚簇索引的表名称。 |
columnName | 设置聚簇索引的字段名称。 |
使用建议
- Clustering Key主要适用于点查以及范围查询的场景,对于过滤操作有比较好的性能提升,即对于
where a = 1
或者where a > 1 and a < 5
的场景加速效果比较好。可以同时设置Clustering Key和Bitmap Column以达到最佳的点查性能。 - Clustering Key具备左匹配原则,因此一般不建议设置Clustering Key超过两个字段,否则适用场景受限。Clustering Key是用于排序,所以Clustering Key里的列组合是有先后关系的,即排在前面列的排序优先级高于后面的列。
- Clustering Key默认为升序(asc),建表时不支持设置为降序(desc),设置降序后不能命中Clustering Key,无法提升查询性能。
- 对于行存表,Clustering Key默认为主键 (Hologres V0.9之前版本默认不设置)。如果设置和主键不同的Clustering Key,那么Hologres会为这张表生成两个排序(Primary Key排序和Clustering Key排序),造成数据冗余。
使用限制
- 如需修改Clustering Key,请重新建表并导入数据。
- Clustering Key必须为not nullable的列或者列组合。Hologres V1.3.20~1.3.27版本支持Clustering Key为nullable,从V1.3.28版本开始不支持Clustering Key为nullable,为nullable的Clustering Key可能会影响数据正确性,如果业务有强需求设置Clustering Key为null,可以在SQL前添加如下参数。
set hg_experimental_enable_nullable_clustering_key = true;
- 不支持将Float、Double、Decimal(Numeric)、Timestamp、Array、Json、Jsonb及其他复杂数据类型的字段设置为Clustering Key。
- 指定Clustering Key字段时,可在字段名后添加
:asc
来构建索引时的排序方式。排序方式默认为asc
,即升序。暂不支持降序(desc
),如果设置了降序,无法命中Clustering Key,导致查询性能不佳。 - 对于列存表,Clustering Key默认为空,需要根据业务场景显式指定。
- 在Hologres中,每个表只能设置一组Clustering Key。即建表的时候只能使用
call
命令一次,不能执行多次,如下示例:--正确示例 begin; create table tbl (a int not null, b text not null); call set_table_property('tbl', 'clustering_key', 'a,b'); commit; --错误示例 begin; create table tbl (a int not null, b text not null); call set_table_property('tbl', 'clustering_key', 'a'); call set_table_property('tbl', 'clustering_key', 'b'); commit;
技术原理
Clustering Key在物理存储上是指在文件内进行排序,默认为升序(asc),可以通过下图理解Clustering Key的布局概念。
- 逻辑布局。
Clustering Key查询具备左匹配原则,不匹配则无法使用Clustering Key查询加速。如下场景示例将为您说明Hologres中Clustering Key的逻辑布局。
准备一张表,其字段分别包括Name、Date、Class。- 设置Date为Clustering Key,会将表内的数据按照Date进行排序。
- 设置Class和Date为Clustering Key,会对表先按照Class排序后再按照Date进行排序。
- 物理存储布局。Clustering Key的物理存储布局如下图所示。
通过Clustering Key的布局原理可以看出:
- Clustering Key适合范围过滤的场景。比如
where date= 1/1
或者where a > 1/1 and a < 1/5
的场景加速效果比较好。 - Clustering Key查询具备左匹配原则,不匹配则无法利用上Clustering Key查询加速。即假设设置
a,b,c
三列为Clustering Key,如果是查a,b,c
或者查a,b
可以命中Clustering Key;如果查a,c
只有a
可以命中Clustering Key;如果查b,c
则无法命中Clustering Key。
uid,class,date
三列为Clustering Key。begin;
create table clustering_test (
uid int not null,
name text not null,
class text not null,
date text not null,
PRIMARY KEY (uid)
);
call set_table_property('clustering_test', 'clustering_key', 'uid,class,date');
commit;
INSERT INTO clustering_test VALUES
(1,'张三','1','2022-10-19'),
(2,'李四','3','2022-10-19'),
(3,'王五','2','2022-10-20'),
(4,'赵六','2','2022-10-20'),
(5,'孙七','2','2022-10-18'),
(6,'周八','3','2022-10-17'),
(7,'吴九','3','2022-10-20');
- 只查
uid
列,可以命中Clustering Key。
通过查看执行计划(explain SQL),如下所示执行计划中有SELECT * FROM clustering_test WHERE uid > '3';
Cluster Filter
算子,表明命中了Clustering Key,查询加速。 - 查
uid,class
列,可以命中Clustering Key。
通过查看执行计划(explain SQL),如下所示执行计划中有SELECT * FROM clustering_test WHERE uid = '3' AND class >'1' ;
Cluster Filter
算子,表明命中了Clustering Key,查询加速。 - 查
uid,class,date
三列可以命中Clustering Key。
通过查看执行计划(explain SQL),如下所示执行计划中有SELECT * FROM clustering_test WHERE uid = '3' AND class ='2' AND date > '2022-10-17';
Cluster Filter
算子,表明命中了Clustering Key,查询加速。 - 查
uid,date
两列,不符合左匹配原则,因此只有uid
可以命中Clustering Key,date
则是走普通过滤。
通过查看执行计划(explain SQL),如下所示执行计划中只有uid列有SELECT * FROM clustering_test WHERE uid = '3' AND date > '2022-10-17';
Cluster Filter
算子。 - 只查
class,date
两列,不符合左匹配原则,都无法命中Clustering Key。
通过查看执行计划(explain SQL),如下所示执行计划中没有SELECT * FROM clustering_test WHERE class ='2' AND date > '2022-10-17';
Cluster Filter
算子,表明未命中Clustering Key。
使用示例
begin;
create table table1 (
col1 int not null,
col2 text not null,
col3 text not null,
col4 text not null
);
call set_table_property('table1', 'clustering_key', 'col1,col2');
commit;
--如上的建表sql,query可以被加速的情况如下:
-- 可加速
select * from table1 where col1='abc';
-- 可加速
select * from table1 where col1>'xxx' and col1<'abc';
-- 可加速
select * from table1 where col1 in ('abc','def');
-- 可加速
select * from table1 where col1='abc' and col2='def';
-- 不可加速
select col1,col4 from table1 where col2='def';
--也可以建表时指定排序
begin;
create table tbl (a int not null, b text not null);
call set_table_property('tbl', 'clustering_key', 'a,b:asc');
commit;
高级调优手段
和传统数据库(MySQL或SQLServer)中的聚簇索引不同,Hologres的排序仅做到了文件内的排序,并非是全表数据的排序,因此在Clustering Key上做order by
操作仍然有一定的代价。
Hologres从V1.3版本开始针对Clustering Key的场景使用做了较多的性能优化,实现在使用Clustering Key时有更好的性能,主要包含如下两个场景优化。如果您的版本低于1.3版本,请您使用自助升级或加入实时数仓Hologres交流群(钉钉群号:32314975)申请升级实例。
- 针对Clustering Keys做Order By场景在Hologres中,文件内是按照Clustering Keys定义排序的,但在V1.3版本之前,优化器无法利用文件内的Clustering Keys有序性生成最优执行计划;同时经过Shuffle节点时也无法保障数据有序输出(多路归并),这就容易导致实际的计算量更大,耗时较久。在Hologres V1.3版本针对上面的情况进行优化,保证了生成的执行计划能够利用Clustering Keys的有序性,并能保障跨Shuffle保序,从而提高查询性能。但要注意:
- 当表没有对Clustering Keys做过滤时,默认走的是SeqScan,而不是IndexScan(只有IndexScan才会利用Clustering Keys的有序属性)。
- 优化器并不保障总是生成基于Clustering Keys有序的执行计划,因为利用Clustering Keys有序性是有些代价的(文件内有序但内存中需要额外排序的)。
示例如下。- 表的DDL如下。
drop table if exists test_use_sort_info_of_clustering_keys; begin; create table test_use_sort_info_of_clustering_keys ( a int, b int, c text ); call set_table_property('test_use_sort_info_of_clustering_keys', 'distribution_key', 'a'); call set_table_property('test_use_sort_info_of_clustering_keys', 'clustering_key', 'a,b'); commit; insert into test_use_sort_info_of_clustering_keys select i%500, i%100, i::text from generate_series(1, 1000) as s(i); analyze test_use_sort_info_of_clustering_keys;
- 查询语句。
explain select * from test_use_sort_info_of_clustering_keys where a > 100 order by a, b;
- 执行计划对比
- V1.3之前版本(V1.1)的执行计划(执行
explain
SQL)如下。Sort (cost=0.00..0.00 rows=797 width=11) -> Gather (cost=0.00..2.48 rows=797 width=11) Sort Key: a, b -> Sort (cost=0.00..2.44 rows=797 width=11) Sort Key: a, b -> Exchange (Gather Exchange) (cost=0.00..1.11 rows=797 width=11) -> Decode (cost=0.00..1.11 rows=797 width=11) -> Index Scan using holo_index:[1] on test_use_sort_info_of_clustering_keys (cost=0.00..1.00 rows=797 width=11) Cluster Filter: (a > 100)
- V1.3版本的执行计划如下。
Gather (cost=0.00..1.15 rows=797 width=11) Merge Key: a, b -> Exchange (Gather Exchange) (cost=0.00..1.11 rows=797 width=11) Merge Key: a, b -> Decode (cost=0.00..1.11 rows=797 width=11) -> Index Scan using holo_index:[1] on test_use_sort_info_of_clustering_keys (cost=0.00..1.01 rows=797 width=11) Order by: a, b Cluster Filter: (a > 100)
- V1.3之前版本(V1.1)的执行计划(执行
- 针对Clustering Keys做Join的场景(Beta)Hologres在V1.3版本新增了SortMergeJoin类型,以保证生成的执行计划能够利用Clustering Keys的有序性,减少计算量,从而提高性能。但需要注意:
- 当前该功能还处于Beta版本,默认不开启,需要在Query前添加如下参数开启。
-- 开启merge join set hg_experimental_enable_sort_merge_join=on;
- 当表没有对Clustering Keys做过滤时,默认走的是SeqScan,而不是IndexScan(只有IndexScan才会利用Clustering Keys的有序属性)。
- 优化器并不保障总是生成基于Clustering Keys有序的执行,因为利用Clustering Keys有序性是有些代价的(文件内有序但内存中需要额外排序)。
示例如下。- 表的DDL如下。
drop table if exists test_use_sort_info_of_clustering_keys1; begin; create table test_use_sort_info_of_clustering_keys1 ( a int, b int, c text ); call set_table_property('test_use_sort_info_of_clustering_keys1', 'distribution_key', 'a'); call set_table_property('test_use_sort_info_of_clustering_keys1', 'clustering_key', 'a,b'); commit; insert into test_use_sort_info_of_clustering_keys1 select i%500, i%100, i::text from generate_series(1, 10000) as s(i); analyze test_use_sort_info_of_clustering_keys1; drop table if exists test_use_sort_info_of_clustering_keys2; begin; create table test_use_sort_info_of_clustering_keys2 ( a int, b int, c text ); call set_table_property('test_use_sort_info_of_clustering_keys2', 'distribution_key', 'a'); call set_table_property('test_use_sort_info_of_clustering_keys2', 'clustering_key', 'a,b'); commit; insert into test_use_sort_info_of_clustering_keys2 select i%600, i%200, i::text from generate_series(1, 10000) as s(i); analyze test_use_sort_info_of_clustering_keys2;
- 查询语句如下。
explain select * from test_use_sort_info_of_clustering_keys1 a join test_use_sort_info_of_clustering_keys2 b on a.a = b.a and a.b=b.b where a.a > 100 and b.a < 300;
- 执行计划对比
- V1.3之前版本(V1.1)的执行计划如下。
Gather (cost=0.00..3.09 rows=4762 width=24) -> Hash Join (cost=0.00..2.67 rows=4762 width=24) Hash Cond: ((test_use_sort_info_of_clustering_keys1.a = test_use_sort_info_of_clustering_keys2.a) AND (test_use_sort_info_of_clustering_keys1.b = test_use_sort_info_of_clustering_keys2.b)) -> Exchange (Gather Exchange) (cost=0.00..1.14 rows=3993 width=12) -> Decode (cost=0.00..1.14 rows=3993 width=12) -> Index Scan using holo_index:[1] on test_use_sort_info_of_clustering_keys1 (cost=0.00..1.01 rows=3993 width=12) Cluster Filter: ((a > 100) AND (a < 300)) -> Hash (cost=1.13..1.13 rows=3386 width=12) -> Exchange (Gather Exchange) (cost=0.00..1.13 rows=3386 width=12) -> Decode (cost=0.00..1.13 rows=3386 width=12) -> Index Scan using holo_index:[1] on test_use_sort_info_of_clustering_keys2 (cost=0.00..1.01 rows=3386 width=12) Cluster Filter: ((a > 100) AND (a < 300))
- V1.3版本的执行计划如下。
Gather (cost=0.00..2.88 rows=4762 width=24) -> Merge Join (cost=0.00..2.46 rows=4762 width=24) Merge Cond: ((test_use_sort_info_of_clustering_keys2.a = test_use_sort_info_of_clustering_keys1.a) AND (test_use_sort_info_of_clustering_keys2.b = test_use_sort_info_of_clustering_keys1.b)) -> Exchange (Gather Exchange) (cost=0.00..1.14 rows=3386 width=12) Merge Key: test_use_sort_info_of_clustering_keys2.a, test_use_sort_info_of_clustering_keys2.b -> Decode (cost=0.00..1.14 rows=3386 width=12) -> Index Scan using holo_index:[1] on test_use_sort_info_of_clustering_keys2 (cost=0.00..1.01 rows=3386 width=12) Order by: test_use_sort_info_of_clustering_keys2.a, test_use_sort_info_of_clustering_keys2.b Cluster Filter: ((a > 100) AND (a < 300)) -> Exchange (Gather Exchange) (cost=0.00..1.14 rows=3993 width=12) Merge Key: test_use_sort_info_of_clustering_keys1.a, test_use_sort_info_of_clustering_keys1.b -> Decode (cost=0.00..1.14 rows=3993 width=12) -> Index Scan using holo_index:[1] on test_use_sort_info_of_clustering_keys1 (cost=0.00..1.01 rows=3993 width=12) Order by: test_use_sort_info_of_clustering_keys1.a, test_use_sort_info_of_clustering_keys1.b Cluster Filter: ((a > 100) AND (a < 300))
- V1.3之前版本(V1.1)的执行计划如下。
- 当前该功能还处于Beta版本,默认不开启,需要在Query前添加如下参数开启。