热门标签 | HotTags
当前位置:  开发笔记 > 数据库 > 正文

postgresqlpg_buffercache

postgresqlpg_buffercachepg_buffercache模块是用于查看sharedbuffercache信息,决定sharedbuffercache大还是

postgresql pg_buffercache pg_buffercache模块是用于查看shared buffer cache信息,决定shared buffer cache大还是

postgresql pg_buffercache

pg_buffercache模块是用于查看shared buffer cache信息,决定shared buffer cache大还是小。

Installing pg_buffercache into a database:

$ createdb pgbench

$ psql -d pgbench -f /usr/share/postgresql/contrib/pg_buffercache.sql

两步即可完成

pg_buffercache.sql内容:

/* contrib/pg_buffercache/pg_buffercache--1.0.sql */

-- complain if script is sourced in psql, rather than via CREATE EXTENSION

\echo Use "CREATE EXTENSION pg_buffercache" to load this file. \quit

-- Register the function.

CREATE FUNCTION pg_buffercache_pages()

RETURNS SETOF RECORD

AS 'MODULE_PATHNAME', 'pg_buffercache_pages'

LANGUAGE C;

-- Create a view for convenient access.

CREATE VIEW pg_buffercache AS

SELECT P.* FROM pg_buffercache_pages() AS P

(bufferid integer, relfilenode oid, reltablespace oid, reldatabase oid,

relforknumber int2, relblocknumber int8, isdirty bool, usagecount int2);

-- Don't want these to be available to public.

REVOKE ALL ON FUNCTION pg_buffercache_pages() FROM PUBLIC;

REVOKE ALL ON pg_buffercache FROM PUBLIC;

创建函数和视图,回收PUBLIC 权限。

Name Type References Description

bufferid integer ID, in the range 1..shared_buffers

relfilenode oid pg_class.relfilenode Filenode number of the relation

reltablespace oid pg_tablespace.oid Tablespace OID of the relation

reldatabase oid pg_database.oid Database OID of the relation

relblocknumber bigint Page number within the relation

relforknumber smallint Fork number within the relation

isdirty boolean Is the page dirty?

usagecount smallint Page LRU count

pg_buffercache使用:

查看shared buffers大小:

postgres=# SELECT name,setting,unit,current_setting(name) FROM pg_settings WHERE name='shared_buffers';

name | setting | unit | current_setting

----------------+---------+------+-----------------

shared_buffers | 4096 | 8kB | 32MB

(1 row)

postgres=# select count(*) from pg_buffercache;

count

-------

4096

(1 row)

可见block数量一致,大小一致。

查看当前数据库buffer的使用情况排名:

SELECT

c.relname,

count(*) AS buffers

FROM pg_class c

INNER JOIN pg_buffercache b

ON b.relfilenode=c.relfilenode

INNER JOIN pg_database d

ON (b.reldatabase=d.oid AND d.datname=current_database())

GROUP BY c.relname

ORDER BY 2 DESC

LIMIT 10;

relname | buffers

---------------------------+---------

pg_statistic | 15

pg_operator | 13

pg_depend_reference_index | 13

pg_depend | 13

pg_rewrite | 8

pg_depend_depender_index | 6

pg_toast_2619 | 6

pg_index | 6

pg_extension | 5

pg_namespace | 5

(10 rows)

使用pg_buffercache比较灵活,可以通过isdirty字段查询脏块,如果是未使用的buffer,那么除了bufferid,其他字段都为空值。

select count(*) from pg_buffercache where isdirty is true;

select count(*)*8/1024||'MB' from pg_buffercache where relfilenode is null and reltablespace is null and reldatabase is null and relforknumber is null and relblocknumber is null and isdirty is null and usagecount is null;

查看buffercache对象的使用大小以及百分比

SELECT

c.relname,

pg_size_pretty(count(*) * 8192) as buffered,

round(100.0 * count(*) /

(SELECT setting FROM pg_settings

WHERE name='shared_buffers')::integer,1)

AS buffers_percent,

round(100.0 * count(*) * 8192 /

pg_relation_size(c.oid),1)

AS percent_of_relation

FROM pg_class c

INNER JOIN pg_buffercache b

ON b.relfilenode = c.relfilenode

INNER JOIN pg_database d

ON (b.reldatabase = d.oid AND d.datname = current_database())

GROUP BY c.oid,c.relname

ORDER BY 3 DESC

LIMIT 10;

relname | buffered | buffers_percent | percent_of_relation

----------------------------------+----------+-----------------+---------------------

pg_statistic | 120 kB | 0.4 | 100.0

pg_depend | 104 kB | 0.3 | 29.5

pg_operator | 104 kB | 0.3 | 100.0

pg_depend_reference_index | 104 kB | 0.3 | 50.0

pg_rewrite | 64 kB | 0.2 | 66.7

pg_operator_oid_index | 32 kB | 0.1 | 100.0

pg_statistic_relid_att_inh_index | 32 kB | 0.1 | 100.0

pg_operator_oprname_l_r_n_index | 40 kB | 0.1 | 100.0

pg_depend_depender_index | 48 kB | 0.1 | 22.2

pg_amop_fam_strat_index | 32 kB | 0.1 | 100.0

缓冲区使用分布:

SELECT

c.relname, count(*) AS buffers,usagecount

FROM pg_class c

INNER JOIN pg_buffercache b

ON b.relfilenode = c.relfilenode

INNER JOIN pg_database d

ON (b.reldatabase = d.oid AND d.datname = current_database())

GROUP BY c.relname,usagecount

ORDER BY c.relname,usagecount;

relname | buffers | usagecount

-----------------------------------+---------+------------

pg_aggregate | 1 | 5

pg_aggregate_fnoid_index | 1 | 4

pg_aggregate_fnoid_index | 1 | 5

pg_am | 1 | 5

pg_amop | 3 | 5

pg_amop_fam_strat_index | 1 | 1

pg_amop_fam_strat_index | 3 | 5

pg_amop_opr_fam_index | 3 | 5

pg_amproc | 1 | 4

pg_amproc | 1 | 5

pg_amproc_fam_proc_index | 2 | 5

pg_attrdef | 1 | 3

pg_attrdef_adrelid_adnum_index | 2 | 3

pg_attrdef_oid_index | 1 | 1

pg_attrdef_oid_index | 1 | 2

pg_cast | 2 | 5

pg_cast_source_target_index | 2 | 5

pg_collation | 1 | 1

pg_collation_oid_index | 1 | 3

pg_collation_oid_index | 2 | 5

pg_constraint | 1 | 1

pg_default_acl_role_nsp_obj_index | 1 | 5

pg_depend | 3 | 1

pg_depend | 1 | 2

pg_depend | 9 | 5

pg_depend_depender_index | 1 | 4

pg_depend_depender_index | 5 | 5

pg_depend_reference_index | 2 | 1

pg_depend_reference_index | 1 | 2

pg_depend_reference_index | 1 | 4

pg_depend_reference_index | 9 | 5


推荐阅读
  • 本文详细介绍了IBM DB2数据库在大型应用系统中的应用,强调其卓越的可扩展性和多环境支持能力。文章深入分析了DB2在数据利用性、完整性、安全性和恢复性方面的优势,并提供了优化建议以提升其在不同规模应用程序中的表现。 ... [详细]
  • 本文介绍了如何使用 PostgreSQL 的 `UPDATE ... FROM` 语法,通过映射表实现对多行记录进行高效的批量更新。这种方法不仅适用于单列更新,还支持多列的同时更新。 ... [详细]
  • 深入理解 SQL 视图、存储过程与事务
    本文详细介绍了SQL中的视图、存储过程和事务的概念及应用。视图为用户提供了一种灵活的数据查询方式,存储过程则封装了复杂的SQL逻辑,而事务确保了数据库操作的完整性和一致性。 ... [详细]
  • 构建基于BERT的中文NL2SQL模型:一个简明的基准
    本文探讨了将自然语言转换为SQL语句(NL2SQL)的任务,这是人工智能领域中一项非常实用的研究方向。文章介绍了笔者在公司举办的首届中文NL2SQL挑战赛中的实践,该比赛提供了金融和通用领域的表格数据,并标注了对应的自然语言与SQL语句对,旨在训练准确的NL2SQL模型。 ... [详细]
  • 本文详细介绍了HTML中标签的使用方法和作用。通过具体示例,解释了如何利用标签为网页中的缩写和简称提供完整解释,并探讨了其在提高可读性和搜索引擎优化方面的优势。 ... [详细]
  • 数据库内核开发入门 | 搭建研发环境的初步指南
    本课程将带你从零开始,逐步掌握数据库内核开发的基础知识和实践技能,重点介绍如何搭建OceanBase的开发环境。 ... [详细]
  • 本文深入探讨 MyBatis 中动态 SQL 的使用方法,包括 if/where、trim 自定义字符串截取规则、choose 分支选择、封装查询和修改条件的 where/set 标签、批量处理的 foreach 标签以及内置参数和 bind 的用法。 ... [详细]
  • 使用C#开发SQL Server存储过程的指南
    本文介绍如何利用C#在SQL Server中创建存储过程,涵盖背景、步骤和应用场景,旨在帮助开发者更好地理解和应用这一技术。 ... [详细]
  • 本文探讨了适用于Spring Boot应用程序的Web版SQL管理工具,这些工具不仅支持H2数据库,还能够处理MySQL和Oracle等主流数据库的表结构修改。 ... [详细]
  • 本文详细介绍了如何通过多种编程语言(如PHP、JSP)实现网站与MySQL数据库的连接,包括创建数据库、表的基本操作,以及数据的读取和写入方法。 ... [详细]
  • 在当前众多持久层框架中,MyBatis(前身为iBatis)凭借其轻量级、易用性和对SQL的直接支持,成为许多开发者的首选。本文将详细探讨MyBatis的核心概念、设计理念及其优势。 ... [详细]
  • 在使用 DataGridView 时,如果在当前单元格中输入内容但光标未移开,点击保存按钮后,输入的内容可能无法保存。只有当光标离开单元格后,才能成功保存数据。本文将探讨如何通过调用 DataGridView 的内置方法解决此问题。 ... [详细]
  • 本文详细介绍了如何在 Linux 平台上安装和配置 PostgreSQL 数据库。通过访问官方资源并遵循特定的操作步骤,用户可以在不同发行版(如 Ubuntu 和 Red Hat)上顺利完成 PostgreSQL 的安装。 ... [详细]
  • 如何在PostgreSQL中查看数据表
    本文将指导您使用pgAdmin工具连接到PostgreSQL数据库,并展示如何浏览和查找其中的数据表。通过简单的步骤,您可以轻松访问所需的表结构和数据。 ... [详细]
  • 利用存储过程构建年度日历表的详细指南
    本文将介绍如何使用SQL存储过程创建一个完整的年度日历表。通过实例演示,帮助读者掌握存储过程的应用技巧,并提供详细的代码解析和执行步骤。 ... [详细]
author-avatar
杨幂-real-perfectpb_852
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有