搜索
首页数据库mysql教程postgresql pg_buffercache

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

声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
如何在MySQL中删除或修改现有视图?如何在MySQL中删除或修改现有视图?May 16, 2025 am 12:11 AM

todropaviewInmySQL,使用“ dropviewifexistsview_name;” andTomodifyAview,使用“ createOrreplaceViewViewViewview_nameAsSelect ...”。whendroppingaview,asew dectivectenciesanduse和showcreateateviewViewview_name;“ tounderStanditSsstructure.whenModifying

MySQL视图:我可以使用哪些设计模式?MySQL视图:我可以使用哪些设计模式?May 16, 2025 am 12:10 AM

mySqlViewScaneFectectialized unizedesignpatternslikeadapter,Decorator,Factory,andObserver.1)adapterPatternadaptSdataForomDifferentTablesIntoAunifiendView.2)decoratorPatternenhancateDataWithCalcalcualdCalcalculenfields.3)fieldfields.3)

在MySQL中使用视图的优点是什么?在MySQL中使用视图的优点是什么?May 16, 2025 am 12:09 AM

查看InMysqlareBeneForsImplifyingComplexqueries,增强安全性,确保dataConsistency,andOptimizingPerformance.1)他们simimplifycomplexqueriesbleiesbyEncapsbyEnculatingThemintoreusableviews.2)viewsEnenenhancesecuritybyControllityByControllingDataAcces.3)

如何在MySQL中创建一个简单的视图?如何在MySQL中创建一个简单的视图?May 16, 2025 am 12:08 AM

toCreateAsimpleViewInmySQL,USEthecReateaTeviewStatement.1)defitEtheetEtheTeViewWithCreatEaTeviewView_nameas.2)指定usethectstatementTorivedesireddata.3)usethectStatementTorivedesireddata.3)usetheviewlikeatlikeatlikeatlikeatlikeatlikeatable.views.viewssimplplifefifydataaccessandenenanceberity but consisterfort,butconserfort,consoncontorfinft

MySQL创建用户语句:示例和常见错误MySQL创建用户语句:示例和常见错误May 16, 2025 am 12:04 AM

1)foralocaluser:createUser'localuser'@'@'localhost'Indidendify'securepassword'; 2)foraremoteuser:creationuser's creationuser'Remoteer'Remoteer'Remoteer'Remoteer'Remoteer'Remoteer'Remoteer'Remoteer'Rocaluser'@'localhost'Indidendify'seceledify'Securepassword'; 2)

在MySQL中使用视图的局限性是什么?在MySQL中使用视图的局限性是什么?May 14, 2025 am 12:10 AM

mysqlviewshavelimitations:1)他们不使用Supportallsqloperations,限制DatamanipulationThroughViewSwithJoinSorsubqueries.2)他们canimpactperformance,尤其是withcomplexcomplexclexeriesorlargedatasets.3)

确保您的MySQL数据库:添加用户并授予特权确保您的MySQL数据库:添加用户并授予特权May 14, 2025 am 12:09 AM

porthusermanagementInmysqliscialforenhancingsEcurityAndsingsmenting效率databaseoperation.1)usecReateusertoAddusers,指定connectionsourcewith@'localhost'or@'%'。

哪些因素会影响我可以在MySQL中使用的触发器数量?哪些因素会影响我可以在MySQL中使用的触发器数量?May 14, 2025 am 12:08 AM

mysqldoes notimposeahardlimitontriggers,butacticalfactorsdeterminetheireffactective:1)serverConfiguration impactactStriggerGermanagement; 2)复杂的TriggerSincreaseSySystemsystem load; 3)largertablesslowtriggerperfermance; 4)highConconcConcrencerCancancancancanceTigrignecentign; 5); 5)

See all articles

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

Video Face Swap

Video Face Swap

使用我们完全免费的人工智能换脸工具轻松在任何视频中换脸!

热工具

WebStorm Mac版

WebStorm Mac版

好用的JavaScript开发工具

SublimeText3 Linux新版

SublimeText3 Linux新版

SublimeText3 Linux最新版

MinGW - 适用于 Windows 的极简 GNU

MinGW - 适用于 Windows 的极简 GNU

这个项目正在迁移到osdn.net/projects/mingw的过程中,你可以继续在那里关注我们。MinGW:GNU编译器集合(GCC)的本地Windows移植版本,可自由分发的导入库和用于构建本地Windows应用程序的头文件;包括对MSVC运行时的扩展,以支持C99功能。MinGW的所有软件都可以在64位Windows平台上运行。

SublimeText3汉化版

SublimeText3汉化版

中文版,非常好用

SublimeText3 Mac版

SublimeText3 Mac版

神级代码编辑软件(SublimeText3)