Re: Parallel workers stats in pg_stat_database
Michael Paquier <michael@paquier.xyz>
From: Michael Paquier <michael@paquier.xyz>
To: Benoit Lobréau <benoit.lobreau@dalibo.com>
Cc: Guillaume Lelarge <guillaume@lelarge.info>, Bertrand Drouvot <bertranddrouvot.pg@gmail.com>, pgsql-hackers <pgsql-hackers@postgresql.org>
Date: 2024-11-07T05:36:58Z
Lists: pgsql-hackers
On Sat, Oct 12, 2024 at 01:14:54AM +0200, Benoit Lobréau wrote: > Here is an updated version, I modified it to: > > * have the same wording in the doc and code (planned => to_launch) > * split de declaration from the rest (and have the same code as the parallel > worker logging patch) Thanks for the updated patch set. I've been thinking about this proposal for the two counters with pg_stat_database in 0001, and I am going to side with the argument that it sucks to not have this information except if pg_stat_statements is enabled on an instance. It would be a different discussion if PGSS were to be in core, and if that were to happen we could perhaps remove these counters from pg_stat_database, but there is no way to be sure if this is going to happen, as well. And this information is useful for the GUC settings. +/* + * reports parallel_workers_to_launch and parallel_workers_launched into + * PgStat_StatDBEntry + */ Perhaps a reword with: "Notify the stats system about parallel worker information." +/* pg_stat_get_db_parallel_workers_to_launch*/ [...] +/* pg_stat_get_db_parallel_workers_launched*/ Incorrect comment format, about which pgindent does not complain.. .. But pgindent complains in execMain.c and pgstat_database.c. These are only nits, the patch is fine. If anybody has objections or comments, feel free. Now, I am not really on board with 0002 and 0003 about the tracking of the maintenance workers, which reflect operations that happen less often than what 0001 is covering. Perhaps this would have more value if autovacuum supported parallel operations, though. -- Michael
Commits
Same data as JSON:
GET /api/v1/messages/:b64id/commits
the thread's linked commits as JSON, with link sources.
API reference →
-
Add two attributes to pg_stat_database for parallel workers activity
- e7a9496de906 18.0 landed
-
Introduce two fields in EState to track parallel worker activity
- de3a2ea3b264 18.0 landed