PostgreSQL插件-pg_stat_statements-查找最耗费资源的SQL(Top SQL)

数据库是较大型的应用,对于繁忙的数据库,需要消耗大量的内存、CPU、IO、网络资源。SQL 优化是数据库优化的手段之一,而为了达到 SQL 优化的最佳效果,您首先需要了解最消耗资源的 SQL(Top SQL),例如 IO 消耗最高的 SQL。

数据库资源分为多个维度、CPU、内存、IO 等,为能够从各个维度层面查找最消耗数据库资源的 SQL,您可以使用 pg_stat_statements 插件统计数据库的资源开销和分析 Top SQL。

本文将通过示例介绍如何创建 pg_stat_statements 插件、如何分析 Top SQL 以及如何重置统计信息。

执行如下命令,在需要查询 TOP SQL 的数据库中,创建 pg_stat_statements 插件。

CREATE EXTENSION pg_stat_statements;

pg_stat_statements 输出内容介绍

通过查询 pg_stat_statements 视图,您可以得到数据库资源开销的统计信息。SQL 语句中的一些过滤条件在 pg_stat_statements 中会被替换成变量,可以减少重复显示的问题。

pg_stat_statements 视图包含了一些重要信息,例如:

  • SQL 的调用次数,总耗时,最快执行时间,最慢执行时间,平均执行时间,执行时间的方差(看出抖动),总共扫描、返回或处理了多少行。
  • shared buffer 的使用情况:命中、未命中、产生脏块、驱逐脏块。
  • local buffer 的使用情况:命中、未命中、产生脏块、驱逐脏块。
  • temp buffer 的使用情况:读了多少脏块、驱逐脏块。
  • 数据块的读写时间。

下表列出了 pg_stat_statements 输出内容中各参数的含义。

参数名称类型参考说明
useridoidpg_authid.oidOID of user who executed the statement.
dbidoidpg_database.oidOID of database in which the statement was executed.
queryidbigintInternal hash code, computed from the statement’s parse tree.
querytextText of a representative statement.
callsbigintNumber of times executed.
total_timedouble precisionTotal time spent in the statement, in milliseconds.
min_timedouble precisionMinimum time spent in the statement, in milliseconds.
max_timedouble precisionMaximum time spent in the statement, in milliseconds.
mean_timedouble precisionMean time spent in the statement, in milliseconds.
stddev_timedouble precisionPopulation standard deviation of time spent in the statement, in milliseconds.
rowsbigintTotal number of rows retrieved or affected by the statement.
shared_blks_hitbigintTotal number of shared block cache hits by the statement.
shared_blks_readbigintTotal number of shared blocks read by the statement.
shared_blks_dirtiedbigintTotal number of shared blocks dirtied by the statement.
shared_blks_writtenbigintTotal number of shared blocks written by the statement.
local_blks_hitbigintTotal number of local block cache hits by the statement.
local_blks_readbigintTotal number of local blocks read by the statement.
local_blks_dirtiedbigintTotal number of local blocks dirtied by the statement.
local_blks_writtenbigintTotal number of local blocks written by the statement.
temp_blks_readbigintTotal number of temp blocks read by the statement.
temp_blks_writtenbigintTotal number of temp blocks written by the statement.
blk_read_timedouble precisionTotal time the statement spent reading blocks, in milliseconds (if track_io_timing is enabled, otherwise zero).
blk_write_timedouble precisionTotal time the statement spent writing blocks, in milliseconds (if track_io_timing is enabled, otherwise zero).

分析 TOP SQL

  • 最耗 IO SQL

    • 执行如下命令,查询单次调用最耗 IO SQL TOP 5。

      SELECT userid::regrole, dbid, query FROM pg_stat_statements ORDER BY (blk_read_time+blk_write_time)/calls DESC LIMIT 5;
      
    • 执行如下命令,查询总最耗 IO SQL TOP 5。

      SELECT userid::regrole, dbid, query FROM pg_stat_statements ORDER BY (blk_read_time+blk_write_time) DESC LIMIT 5;
      
  • 最耗时 SQL

    • 执行如下命令,查询单次调用最耗时 SQL TOP 5。

      SELECT userid::regrole, dbid, query FROM pg_stat_statements ORDER BY mean_time DESC LIMIT 5;
      
    • 执行如下命令,查询总最耗时 SQL TOP 5。

      SELECT userid::regrole, dbid, query FROM pg_stat_statements ORDER BY total_time DESC LIMIT 5;
      
  • 响应时间抖动最严重 SQL

    执行如下命令,查询响应时间抖动最严重 SQL。

    SELECT userid::regrole, dbid, query FROM pg_stat_statements ORDER BY stddev_time DESC LIMIT 5;
    
  • 最耗共享内存 SQL

    执行如下命令,查询最耗共享内存 SQL。

    SELECT userid::regrole, dbid, query FROM pg_stat_statements ORDER BY (shared_blks_hit+shared_blks_dirtied) DESC LIMIT 5;
    
  • 最耗临时空间 SQL

    执行如下命令,查询最耗临时空间 SQL。

    SELECT userid::regrole, dbid, query FROM pg_stat_statements ORDER BY temp_blks_written DESC LIMIT 5;
    

重置统计信息

pg_stat_statements是累积的统计,如果要查看某个时间段的统计,需要查询快照的信息,详情请参见《PostgreSQL AWR报告(for 阿里云ApsaraDB PgSQL)》

您也可以通过执行如下命令,来定期清理历史统计信息。

SELECT pg_stat_statements_reset();

参考文档

PostgreSQL 9.6.2 Documentation — F.29. pg_stat_statements


https://www.alibabacloud.com/help/zh/apsaradb-for-rds/latest/locate-sql-statements-with-the-highest-resource-consumption

  • 1
    点赞
  • 11
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值