Re: add checkpoint stats of snapshot and mapping files of pg_logical dir - Mailing list pgsql-hackers

From Nathan Bossart
Subject Re: add checkpoint stats of snapshot and mapping files of pg_logical dir
Date
Msg-id 20220321202448.GA1513050@nathanxps13
Whole thread Raw
In response to Re: add checkpoint stats of snapshot and mapping files of pg_logical dir  (Bharath Rupireddy <bharath.rupireddyforpostgres@gmail.com>)
List pgsql-hackers
On Mon, Mar 21, 2022 at 11:27:15AM +0530, Bharath Rupireddy wrote:
> On Sat, Mar 19, 2022 at 3:16 AM Nathan Bossart <nathandbossart@gmail.com> wrote:
>>         /* buffer stats */
>>         appendStringInfo(&logmsg, "wrote %d buffers (%.1f%%); ",
>>                                                           CheckpointStats.ckpt_bufs_written,
>>                                                           (double) CheckpointStats.ckpt_bufs_written * 100 /
NBuffers);
>>
>>         /* WAL file stats */
>>         appendStringInfo(&logmsg, "%d WAL file(s) added, %d removed, %d recycled; ",
>>                                                           CheckpointStats.ckpt_segs_added,
>>                                                           CheckpointStats.ckpt_segs_removed,
>>                                                           CheckpointStats.ckpt_segs_recycled);
> 
> Do we actually need to granularize the message like this? I actually
> don't think so, because we print the stats even if they are 0 (buffers
> written is 0 or WAL segments added is 0 and so on).

I suggested it because I thought it would improve readability and simplify
optionally adding new stats to the message.  If there is another way to
accomplish those things, that is fine by me.

-- 
Nathan Bossart
Amazon Web Services: https://aws.amazon.com



pgsql-hackers by date:

Previous
From: Joe Conway
Date:
Subject: Re: [PATCH v2] use has_privs_for_role for predefined roles
Next
From: Erik Rijkers
Date:
Subject: Re: jsonpath syntax extensions