Movatterモバイル変換


[0]ホーム

URL:



Facebook
Postgres Pro
Facebook
Downloads
F.27. pg_buffercache
Prev UpAppendix F. Additional Supplied ModulesHome Next

F.27. pg_buffercache

Thepg_buffercache module provides a means for examining what's happening in the shared buffer cache in real time.

The module provides a C functionpg_buffercache_pages that returns a set of records, plus a viewpg_buffercache that wraps the function for convenient use.

By default public access is revoked from both of these, just in case there are security issues lurking.

F.27.1. Thepg_buffercache View

The definitions of the columns exposed by the view are shown inTable F.17.

Table F.17. pg_buffercache Columns

NameTypeReferencesDescription
bufferidinteger ID, in the range 1..shared_buffers
relfilenodeoidpg_class.relfilenodeFilenode number of the relation
reltablespaceoidpg_tablespace.oidTablespace OID of the relation
reldatabaseoidpg_database.oidDatabase OID of the relation
relforknumbersmallint Fork number within the relation; seeinclude/common/relpath.h
relblocknumberbigint Page number within the relation
isdirtyboolean Is the page dirty?
usagecountsmallint Clock-sweep access count
pinning_backendsinteger Number of backends pinning this buffer

There is one row for each buffer in the shared cache. Unused buffers are shown with all fields null exceptbufferid. Shared system catalogs are shown as belonging to database zero.

Because the cache is shared by all the databases, there will normally be pages from relations not belonging to the current database. This means that there may not be matching join rows inpg_class for some rows, or that there could even be incorrect joins. If you are trying to join againstpg_class, it's a good idea to restrict the join to rows havingreldatabase equal to the current database's OID or zero.

When thepg_buffercache view is accessed, internal buffer manager locks are taken for long enough to copy all the buffer state data that the view will display. This ensures that the view produces a consistent set of results, while not blocking normal buffer activity longer than necessary. Nonetheless there could be some impact on database performance if this view is read often.

F.27.2. Sample Output

regression=# SELECT c.relname, count(*) AS buffers             FROM pg_buffercache b INNER JOIN pg_class c             ON b.relfilenode = pg_relation_filenode(c.oid) AND                b.reldatabase IN (0, (SELECT oid FROM pg_database                                      WHERE datname = current_database()))             GROUP BY c.relname             ORDER BY 2 DESC             LIMIT 10;             relname             | buffers---------------------------------+--------- tenk2                           |     345 tenk1                           |     141 pg_proc                         |      46 pg_class                        |      45 pg_attribute                    |      43 pg_class_relname_nsp_index      |      30 pg_proc_proname_args_nsp_index  |      28 pg_attribute_relid_attnam_index |      26 pg_depend                       |      22 pg_depend_reference_index       |      20(10 rows)

F.27.3. Authors

Mark Kirkwood<markir@paradise.net.nz>

Design suggestions: Neil Conway<neilc@samurai.com>

Debugging advice: Tom Lane<tgl@sss.pgh.pa.us>


Prev Up Next
F.26. pg_arman Home F.28. pgcrypto
pdfepub
Go to Postgres Pro Standard 9.5
By continuing to browse this website, you agree to the use of cookies. Go toPrivacy Policy.

[8]ページ先頭

©2009-2025 Movatter.jp