Re: Pluggable cumulative statistics
Michael Paquier <michael@paquier.xyz>
From: Michael Paquier <michael@paquier.xyz>
To: Bertrand Drouvot <bertranddrouvot.pg@gmail.com>
Cc: Postgres hackers <pgsql-hackers@lists.postgresql.org>
Date: 2024-07-09T01:45:05Z
Lists: pgsql-hackers
On Mon, Jul 08, 2024 at 07:22:32AM +0000, Bertrand Drouvot wrote: > Yeah, what I meant to say is that one could think for example that's the > PgStatShared_Archiver size while in fact it's the PgStat_ArchiverStats size. > I think it's more confusing when writing the stats. Here we are manipulating > "snapshot" and "snapshot" offsets. It was not that confusing when reading as we > are manipulating "shmem" and "shared" offsets. > > As I said, the code is fully correct, that's just the wording here that sounds > weird to me in the "snapshot" context. After sleeping on it, I can see your point. If we were to do the (shared_data_len -> stats_data_len) switch, could it make sense to rename shared_data_off to stats_data_off to have a better symmetry? This one is the offset of the stats data in a shmem entry, so perhaps shared_data_off is OK, but it feels a bit inconsistent as well. > Except the above (which is just a Nit), 0001 LGTM. Thanks, I've applied 0001 for now to improve the serialization of this code. -- Michael
Commits
-
injection_points: Add some fixed-numbered statistics
- f68cd847fa40 18.0 landed
-
injection_points: Add some cumulative stats for injection points
- 75534436a477 18.0 landed
-
Add helper routines to retrieve data for custom fixed-numbered pgstats
- 2eff9e678d35 18.0 landed
-
Introduce pluggable APIs for Cumulative Statistics
- 7949d9594582 18.0 landed
-
Switch PgStat_Kind from an enum to a uint32 type
- 3188a4582a8c 18.0 landed
-
Improve comment of pgstat_read_statsfile()
- 72c0b24b2ddd 18.0 landed
-
Add a new 'F' entry type for fixed-numbered stats in pgstats file
- 9e4664d950c1 18.0 landed
-
Add PgStat_KindInfo.init_shmem_cb
- 21471f18e9d9 18.0 landed
-
Use pgstat_kind_infos to write fixed shared statistics
- b68b29bc8fec 18.0 landed
-
Replace hardcoded identifiers of pgstats file by #defines
- 9fd02525793f 18.0 landed