pgsql: Change the type of WalReceiverWaitStart wait event from Client t

From: Fujii Masao <fujii(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Change the type of WalReceiverWaitStart wait event from Client t
Date: 2021-03-23 01:14:21
Message-ID: E1lOVcj-0008T2-1o@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Change the type of WalReceiverWaitStart wait event from Client to IPC.

Previously the type of this wait event was Client. But while this
wait event is being reported, walreceiver process is waiting for
the startup process to set initial data for streaming replication.
It's not waiting for any activity on a socket connected to a user
application or walsender. So this commit changes the type for
WalReceiverWaitStart wait event to IPC.

Author: Fujii Masao
Reviewed-by: Kyotaro Horiguchi
Discussion: https://postgr.es/m/cdacc27c-37ff-f1a4-20e2-ce19933abfcc@oss.nttdata.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/1e3e8b51bda8ddd59984230f876f199c9ce3166a

Modified Files
--------------
doc/src/sgml/monitoring.sgml | 10 +++++-----
src/backend/postmaster/pgstat.c | 6 +++---
src/include/pgstat.h | 2 +-
3 files changed, 9 insertions(+), 9 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Amit Kapila 2021-03-23 03:31:13 Re: pgsql: Add a new GUC and a reloption to enable inserts in parallel-mode
Previous Message Fujii Masao 2021-03-23 00:57:56 pgsql: pg_waldump: Fix bug in per-record statistics.