PostgreSQL之查找最慢的SQL 的方法

前端之家收集整理的这篇文章主要介绍了PostgreSQL之查找最慢的SQL 的方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

帮帮忙顶一下这个文章,非常好的一个文章,非常值得了解。

来自:http://blog.chinaunix.net/uid-24774106-id-3780341.html


PostgreSQL部署上之后,经过一段时间的运行,我们比较关心那些sql运行时间比较长,或者说那些sql执行的特别慢,拖累的性能,只有找到这些sql,才能有针对性地对这些sql进行优化,提升Postgresql性能
Postgresql提供了pg_stat_statements来存储sql的运行次数,总运行时间,shared_buffer命中次数,shared_buffer read次数统计信息。

Name Type References Description
userid oid pg_authid.oid OID of user who executed the statement
dbid pg_database.oid OID of database in which the statement was executed
query text Text of the statement (up totrack_activity_query_sizebytes)
calls bigint Number of times executed
total_time double precision Total time spent in the statement,in seconds
rows Total number of rows retrieved or affected by the statement
shared_blks_hit bigint Total number of shared blocks hits by the statement
shared_blks_read Total number of shared blocks reads by the statement
shared_blks_written Total number of shared blocks writes by the statement
local_blks_hit Total number of local blocks hits by the statement
local_blks_read Total number of local blocks reads by the statement
local_blks_written Total number of local blocks writes by the statement
temp_blks_read Total number of temp blocks reads by the statement
temp_blks_written Total number of temp blocks writes by the statemen
上图表来自Postgresql官方文档,注意的一点是,我的Postgresql是9.1.9,此时total_time的单位是秒,我观9.2的Postgresql的文档,total_time单位已经是毫秒。所以我的参考文献More On PostgreSQL perform里面应该用的是9.2,因为外国这位大神默认单位是毫秒。
可以看出,pg_stat_statements统计sql的很多信息,方便我们分析sql性能。但是这个属于Postgresql的扩展,需要修改postgresql.conf,才能使用:
操作步骤如下
1 修改配置文件,并且重启Postgresql方能生效
  1. #--
  2. # PG_STAT_STATEMENTS OPTIONS
  3. #-
  4. shared_preload_libraries='pg_stat_statements'
  5. custom_variable_classes'pg_stat_statements'
  6. pg_stat_statements.max=1000
  7. pg_stat_statements.track=all
2 创建pg_stat_statements扩展
CREATEEXTENSION pg_stat_statements;
从此之后,Postgresql就能记录sql统计信息。
上面的表格虽然丰富,其实我们基本比较关心执行最慢的sql,如何查看执行最慢的10条sql
SELECT query,calls(total_time/calls)asaveragerows 100.0*shared_blks_hit/nullif(shared_blks_hit+shared_blks_readAShit_percent
  • FROM pg_stat_statements
  • ORDER BYaverageDESCLIMIT 10;
  • 我在我本地的DB,查找最慢的2条sql输出如下:

    在我另一台机器上,用pgadmin查看:

    统计结果一直都在,重启也不会清零,那么统计结果如何清零重新统计呢?执行下面sql即可:
    selectpg_stat_statements_reset(;
    找到最耗时的sql,我们就能针对这些耗时的sql,查看是否有优化的余地。

    参考文献:
    1 More on Postgres Performance
    2 Postgresql manual 原文链接:https://www.f2er.com/postgresql/194065.html

    猜你在找的Postgre SQL相关文章