暂无图片
暂无图片
暂无图片
暂无图片
暂无图片

阿里云 PostgreSQL pg_hint_plan插件的用法

digoal 2016-04-01
252

作者

digoal

日期

2016-04-01

标签

PostgreSQL , pg_hint_plan , 优化器


背景

阿里云RDS PostgreSQL给的是介于超级用户和普通用户之间的用户权限,在使用pg_hint_plan时与超级用户有些许不同。

使用方法

使用rds_superuser登陆需要安装pg_hint_plan插件的数据库。

postgres=> \du+ List of roles Role name | Attributes | Member of | Description --------------+------------------------------------------------+-----------+--------------- digoal | | {} | rds_superuser postgres=> \c test

执行以下SQL:

test=> create extension pg_hint_plan; CREATE EXTENSION

修改所有用户的session_preload_libraries

test=> alter role all set session_preload_libraries='pg_hint_plan'; ALTER ROLE

试用pg_hint_plan

```
test=> create table test(id int primary key, info text);
CREATE TABLE
test=> insert into test select generate_series(1,100000);
INSERT 0 100000
test=> explain select * from test where id=1;
QUERY PLAN


Index Scan using test_pkey on test (cost=0.29..8.31 rows=1 width=36)
Index Cond: (id = 1)
(2 rows)

test=> /+ seqscan(test) / explain select * from test where id=1;
QUERY PLAN


Seq Scan on test (cost=0.00..1124.11 rows=272 width=36)
Filter: (id = 1)
(2 rows)

test=> /+ bitmapscan(test) / explain select * from test where id=1;
QUERY PLAN


Bitmap Heap Scan on test (cost=4.30..8.31 rows=1 width=36)
Recheck Cond: (id = 1)
-> Bitmap Index Scan on test_pkey (cost=0.00..4.30 rows=1 width=0)
Index Cond: (id = 1)
(4 rows)
```

参考

《PostgreSQL SQL HINT的使用(pg_hint_plan)》

PostgreSQL 许愿链接

您的愿望将传达给PG kernel hacker、数据库厂商等, 帮助提高数据库产品质量和功能, 说不定下一个PG版本就有您提出的功能点. 针对非常好的提议,奖励限量版PG文化衫、纪念品、贴纸、PG热门书籍等,奖品丰富,快来许愿。开不开森.

9.9元购买3个月阿里云RDS PostgreSQL实例

PostgreSQL 解决方案集合

德哥 / digoal's github - 公益是一辈子的事.

digoal's wechat

文章转载自digoal,如果涉嫌侵权,请发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。

评论