pgsql: Add leader_pid to pg_stat_activity

From: Michael Paquier <michael(at)paquier(dot)xyz>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Add leader_pid to pg_stat_activity
Date: 2020-02-06 00:23:33
Message-ID: E1izUxB-0000w0-9P@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Add leader_pid to pg_stat_activity

This new field tracks the PID of the group leader used with parallel
query. For parallel workers and the leader, the value is set to the
PID of the group leader. So, for the group leader, the value is the
same as its own PID. Note that this reflects what PGPROC stores in
shared memory, so as leader_pid is NULL if a backend has never been
involved in parallel query. If the backend is using parallel query or
has used it at least once, the value is set until the backend exits.

Author: Julien Rouhaud
Reviewed-by: Sergei Kornilov, Guillaume Lelarge, Michael Paquier, Tomas
Vondra
Discussion: https://postgr.es/m/CAOBaU_Yy5bt0vTPZ2_LUM6cUcGeqmYNoJ8-Rgto+c2+w3defYA@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/b025f32e0b5d7668daec9bfa957edf3599f4baa8

Modified Files
--------------
doc/src/sgml/monitoring.sgml | 12 ++++++++++
src/backend/catalog/system_views.sql | 1 +
src/backend/utils/adt/pgstatfuncs.c | 44 +++++++++++++++++++++---------------
src/include/catalog/pg_proc.dat | 6 ++---
src/test/regress/expected/rules.out | 9 ++++----
5 files changed, 47 insertions(+), 25 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Fujii Masao 2020-02-06 05:46:09 pgsql: Fix bug in LWLock statistics mechanism.
Previous Message Andrew Gierth 2020-02-05 20:24:44 pgsql: Force tuple conversion when the source has missing attributes.