pgsql: pgstat: Infrastructure for more detailed IO statistics

Поиск
Список
Период
Сортировка
От Andres Freund
Тема pgsql: pgstat: Infrastructure for more detailed IO statistics
Дата
Msg-id E1pPz2Q-000BS8-5e@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
pgstat: Infrastructure for more detailed IO statistics

This commit adds the infrastructure for more detailed IO statistics. The calls
to actually count IOs, a system view to access the new statistics,
documentation and tests will be added in subsequent commits, to make review
easier.

While we already had some IO statistics, e.g. in pg_stat_bgwriter and
pg_stat_database, they did not provide sufficient detail to understand what
the main sources of IO are, or whether configuration changes could avoid
IO. E.g., pg_stat_bgwriter.buffers_backend does contain the number of buffers
written out by a backend, but as that includes extending relations (always
done by backends) and writes triggered by the use of buffer access strategies,
it cannot easily be used to tune background writer or checkpointer. Similarly,
pg_stat_database.blks_read cannot easily be used to tune shared_buffers /
compute a cache hit ratio, as the use of buffer access strategies will often
prevent a large fraction of the read blocks to end up in shared_buffers.

The new IO statistics count IO operations (evict, extend, fsync, read, reuse,
and write), and are aggregated for each combination of backend type (backend,
autovacuum worker, bgwriter, etc), target object of the IO (relations, temp
relations) and context of the IO (normal, vacuum, bulkread, bulkwrite).

What is tracked in this series of patches, is sufficient to perform the
aforementioned analyses. Further details, e.g. tracking the number of buffer
hits, would make that even easier, but was left out for now, to keep the scope
of the already large patchset manageable.

Bumps PGSTAT_FILE_FORMAT_ID.

Author: Melanie Plageman <melanieplageman@gmail.com>
Reviewed-by: Andres Freund <andres@anarazel.de>
Reviewed-by: Justin Pryzby <pryzby@telsasoft.com>
Reviewed-by: Kyotaro Horiguchi <horikyota.ntt@gmail.com>
Discussion: https://postgr.es/m/20200124195226.lth52iydq2n2uilq@alap3.anarazel.de

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/28e626bde00efe8051fbd677227c97b1aa3c6a1a

Modified Files
--------------
doc/src/sgml/monitoring.sgml                     |   2 +
src/backend/utils/activity/Makefile              |   1 +
src/backend/utils/activity/meson.build           |   1 +
src/backend/utils/activity/pgstat.c              |  26 ++
src/backend/utils/activity/pgstat_bgwriter.c     |   7 +-
src/backend/utils/activity/pgstat_checkpointer.c |   7 +-
src/backend/utils/activity/pgstat_io.c           | 391 +++++++++++++++++++++++
src/backend/utils/activity/pgstat_relation.c     |  15 +-
src/backend/utils/activity/pgstat_shmem.c        |   4 +
src/backend/utils/activity/pgstat_wal.c          |   4 +-
src/backend/utils/adt/pgstatfuncs.c              |  11 +-
src/include/miscadmin.h                          |   2 +
src/include/pgstat.h                             |  70 +++-
src/include/utils/pgstat_internal.h              |  30 ++
src/tools/pgindent/typedefs.list                 |   6 +
15 files changed, 569 insertions(+), 8 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Andres Freund
Дата:
Сообщение: pgsql: Fix bugs in GetSafeSnapshotBlockingPids(), introduced in 9600371
Следующее
От: Andres Freund
Дата:
Сообщение: pgsql: Remove uses of AssertVariableIsOfType() obsoleted by f2b73c8