openGauss学习笔记-260 openGauss性能调优-使用Plan Hint进行调优-同层参数化路径的Hint

openGauss学习笔记-260 openGauss性能调优-使用Plan Hint进行调优-同层参数化路径的Hint260.1 功能描述260.2 语法格式260.3 示例

openGauss学习笔记-260 openGauss性能调优-使用Plan Hint进行调优-同层参数化路径的Hint

260.1 功能描述

通过predpush_same_level Hint来指定同层表或物化视图之间参数化路径生成。

260.2 语法格式

predpush_same_level(src, dest)
predpush_same_level(src1 src2 ..., dest)
image.png

说明: 本参数仅在rewrite_rule中的predpushforce选项打开时生效。

260.3 示例

准备参数和表及索引:

openGauss=# set rewrite_rule = 'predpushforce';
SET
openGauss=# create table t1(a int, b int);
CREATE TABLE
openGauss=# create table t2(a int, b int);
CREATE TABLE
openGauss=# create index idx1 on t1(a);
CREATE INDEX
openGauss=# create index idx2 on t2(a);
CREATE INDEX

执行语句查看计划:

openGauss=# explain select * from t1, t2 where t1.a = t2.a;
 QUERY PLAN
------------------------------------------------------------------
 Hash Join  (cost=27.50..56.25 rows=1000 width=16)
 Hash Cond: (t1.a = t2.a)
 ->  Seq Scan on t1  (cost=0.00..15.00 rows=1000 width=8)
 ->  Hash  (cost=15.00..15.00 rows=1000 width=8)
 ->  Seq Scan on t2  (cost=0.00..15.00 rows=1000 width=8)
(5 rows)

可以看到t1.a = t2.a条件过滤在Join上面,此时可以通过predpush_same_level(t1, t2)将条件下推至t2的扫描算子上:

openGauss=# explain select /*+predpush_same_level(t1, t2)*/ * from t1, t2 where t1.a = t2.a;
 QUERY PLAN
---------------------------------------------------------------------
 Nested Loop  (cost=0.00..335.00 rows=1000 width=16)
 ->  Seq Scan on t1  (cost=0.00..15.00 rows=1000 width=8)
 ->  Index Scan using idx2 on t2  (cost=0.00..0.31 rows=1 width=8)
 Index Cond: (a = t1.a)
(4 rows)
image.png

须知:

  • predpush_same_level可以指定多个src,但是所有的src必须在同一个条件中。
  • 如果指定的src和dest条件不存在,或该条件不符合参数化路径要求,则本hint不生效。

👍 点赞,你的认可是我创作的动力!

⭐️ 收藏,你的青睐是我努力的方向!

✏️ 评论,你的意见是我进步的财富!

image.png
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

友情链接更多精彩内容