pgsql: pg_stat_statements: Track I/O timing for temporary file blocks

From: Michael Paquier <michael(at)paquier(dot)xyz>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: pg_stat_statements: Track I/O timing for temporary file blocks
Date: 2022-04-08 04:12:58
Message-ID: E1ncfzV-000pzr-DF@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

pg_stat_statements: Track I/O timing for temporary file blocks

This commit adds two new columns to pg_stat_statements, called
temp_blk_read_time and temp_blk_write_time. Those columns respectively
show the time spent to read and write temporary file blocks on disk,
whose tracking has been added in efb0ef9. This information is
available when track_io_timing is enabled, like blk_read_time and
blk_write_time.

pg_stat_statements is updated to version to 1.10 as an effect of the
newly-added columns. Tests for the upgrade path 1.9->1.10 are added.

PGSS_FILE_HEADER is bumped for the new stats file format.

Author: Masahiko Sawada
Reviewed-by: Georgios Kokolatos, Melanie Plageman, Julien Rouhaud,
Ranier Vilela
Discussion: https://postgr.es/m/CAD21AoAJgotTeP83p6HiAGDhs_9Fw9pZ2J=_tYTsiO5Ob-V5GQ@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/76cbf7edb6385c682facda095050858cac2efae0

Modified Files
--------------
contrib/pg_stat_statements/Makefile | 3 +-
.../pg_stat_statements/expected/oldextversions.out | 106 +++++++++++++++++++++
.../pg_stat_statements--1.9--1.10.sql | 59 ++++++++++++
contrib/pg_stat_statements/pg_stat_statements.c | 38 +++++++-
.../pg_stat_statements/pg_stat_statements.control | 2 +-
contrib/pg_stat_statements/sql/oldextversions.sql | 12 +++
doc/src/sgml/pgstatstatements.sgml | 26 ++++-
7 files changed, 237 insertions(+), 9 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Andres Freund 2022-04-08 04:36:18 pgsql: pgstat: Update docs to match the shared memory stats reality.
Previous Message Andrew Dunstan 2022-04-08 03:46:30 pgsql: Documentation for SQL/JSON features