Re: add checkpoint stats of snapshot and mapping files of pg_logical dir

Поиск
Список
Период
Сортировка
От Nathan Bossart
Тема Re: add checkpoint stats of snapshot and mapping files of pg_logical dir
Дата
Msg-id 20220318214629.GA1459141@nathanxps13
обсуждение исходный текст
Ответ на Re: add checkpoint stats of snapshot and mapping files of pg_logical dir  (Bharath Rupireddy <bharath.rupireddyforpostgres@gmail.com>)
Список pgsql-hackers
On Fri, Mar 18, 2022 at 01:32:52PM +0530, Bharath Rupireddy wrote:
> Well, here's the v5 patch, sample output at [1]. Please have a look at it.

I think this is on the right track, but I would even take it a step
further by separating each group of information:

    if (restartpoint)
        appendStringInfo(&logmsg, "restartpoint complete: ");
    else
        appendStringInfo(&logmsg, "checkpoint complete: ");

    /* 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);

    ...

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



В списке pgsql-hackers по дате отправления:

Предыдущее
От: Pavel Borisov
Дата:
Сообщение: Re: Probable CF bot degradation
Следующее
От: Andrew Dunstan
Дата:
Сообщение: Re: New Object Access Type hooks