postgresql 以 12 版本为例
我们需要先打开 postgresql 的慢查询日志,此为前置条件,先记录下我们时间较长的查询。
/var/postgres12/data/postgresql.conf
#log_min_duration_statement = -1 # -1 is disabled, 0 logs all statements # and their durations, > 0 logs only # statements running at least this number # of milliseconds
修改 -1
为 200
,表示大于等于 200 毫秒的操作将被记录到日志。
/path/to/pg_ctl reload -D /path/to/pgdata
sudo su - postgres
less /path/to/pg_log/postgresql.log
Shift + G
duration
因为被记录的日志格式形如:
duration xxx ms select ….
path/to/psql -U postgres -d <database>
\timing
explain select max(id) as max_id from test_table where created < now() - interval '24 hours'; QUERY PLAN ------------------------------------------------------------------------------------------------------------------------------ Finalize Aggregate (cost=12673.45..12673.46 rows=1 width=8) -> Gather (cost=12673.24..12673.45 rows=2 width=8) Workers Planned: 2 -> Partial Aggregate (cost=11673.24..11673.25 rows=1 width=8) -> Parallel Seq Scan on test_table (cost=0.00..10631.80 rows=416575 width=8) Filter: (created < (now() - '24:00:00'::interval)) (6 rows)
explain
是显示查询计划,不会真正执行,所以甚至 update 也可以放在 explain 后面。
但是要注意,不能是 explain analyze
,带了 analyze
就真跑了,所以这个不能用于 DML
。
DQL: SELECT
DML: UPDATE/DELETE/INSERT
DDL: CREATE TABLE/VIEW/INDEX/SYN/CLUSTER
DCL: GRANT/ROLLBACK/COMMIT
另外可以看到结果中显示的是 Seq Scan
,顺序扫描,所以可以为它创建一个索引,变成 Index Scan
。
create index test_index on test_table (created);
然后再次分析,如果时间没有明显减少,可以再去掉此索引。
重复以上步骤,即可逐步减少系统中的慢查询。
作者:isshe
github: https://github.com/isshe