openGauss

开源数据库

openGauss社区官网

开源社区

什么是慢SQL且如何查看慢SQL

张翠娉2022-08-11什么是慢SQL且如何查看慢SQL

什么是慢 SQL 且如何查看慢 SQL?

介绍

某个 SQL 执行时间超过指定时间时称为慢 SQL。我们可以查看慢 SQL,包括历史慢 SQL 以及当前慢 SQL。

查看历史慢 SQL

首先要设置 log_min_duration_statement,记录慢 SQL。

然后在参数 log_directory 指定的目录中查看日志。

进入数据库的数据目录,找到 postgresql.conf 配置文件,设置 log_min_duration_statement 参数。

bash
cd /opt/mogdb/data

查看当前慢 SQL

例如查询执行时间超过 1 秒的 SQL

MogDB=# select * from pg_stat_activity where state<>'idle' and now()-query_start > interval '1 s' order by query_start;
 datid | datname  |      pid       |   sessionid    | usesysid | usename | application_name | client_addr | client_hostname | client_port |         back
end_start         |          xact_start           |          query_start          |         state_change          | waiting | enqueue | state  | resourc
e_pool | query_id |                 query                  | connection_info | unique_sql_id | trace_id
-------+----------+----------------+----------------+----------+---------+------------------+-------------+-----------------+-------------+-------------
------------------+-------------------------------+-------------------------------+-------------------------------+---------+---------+--------+--------
-------+----------+----------------------------------------+-----------------+---------------+----------
 16019 | postgres | 70396694860272 | 70396694860272 |       10 | ommdoc  | workload         |             |                 |             | 2022-07-25 1
5:15:34.954987+08 | 2022-07-25 15:15:34.957823+08 | 2022-07-25 15:15:34.957823+08 | 2022-07-25 15:15:34.959476+08 | f       |         | active | default
_pool  |        0 | WLM fetch collect info from data nodes |                 |             0 |
(1 row)

MogDB=#