From: | Kyotaro Horiguchi <horikyota(dot)ntt(at)gmail(dot)com> |
---|---|
To: | andres(at)anarazel(dot)de |
Cc: | michael(at)paquier(dot)xyz, movead(dot)li(at)highgo(dot)ca, pgsql-hackers(at)postgresql(dot)org, ahsan(dot)hadi(at)highgo(dot)ca |
Subject: | Re: Wrong statistics for size of XLOG_SWITCH during pg_waldump. |
Date: | 2020-10-15 02:44:43 |
Message-ID: | 20201015.114443.2231235644531652368.horikyota.ntt@gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
At Wed, 14 Oct 2020 13:46:13 -0700, Andres Freund <andres(at)anarazel(dot)de> wrote in
> Hi,
>
> On 2020-10-14 15:52:43 +0900, Michael Paquier wrote:
> > Yeah. In its current shape, it means that only pg_waldump would be
> > able to know this information. If you make this information part of
> > xlogdesc.c, any consumer of the WAL record descriptions would be able
> > to show this information, so it would provide a consistent output for
> > any kind of tools.
>
> I'm not convinced by this argument. The only case where accounting for
> the "wasted" length seems really interesting is for --stats=record - and
> for that including it in the record description is useless. When looking
> at plain records the length is sufficiently deducable by looking at the
> next record's LSN.
I'm not sure the exact motive of this proposal, but if we show the
wasted length in the stats result, I think it should be other than
existing record types.
XLOG/CHECKPOINT_SHUTDOWN 1 ( 0.50) ..
...
Btree/INSERT_LEAF 63 ( 31.19) ..
+ EMPTY 1 ( xx.xx) ..
----------------------------------------
Total ...
By the way, I noticed that --stats=record shows two lines for
Transaction/COMMIT. The cause is that XLogDumpCountRecord assumes the
all four bits of xl_info is used to identify record id.
The fourth bit of xl_info of XLOG records is used to signal the
existence of record has 'xinfo' field or not. So an XLOG record with
recid == 8 actually exists but it is really a record that recid == 0
and has xinfo field.
I didn't come up with a cleaner solution but the attached fixes that.
regards.
--
Kyotaro Horiguchi
NTT Open Source Software Center
Attachment | Content-Type | Size |
---|---|---|
fix_pg_waldump_xact_commit_record_stats.diff | text/x-patch | 675 bytes |
From | Date | Subject | |
---|---|---|---|
Next Message | John Naylor | 2020-10-15 02:56:41 | Re: speed up unicode decomposition and recomposition |
Previous Message | Bruce Momjian | 2020-10-15 02:25:38 | Re: Minor documentation error regarding streaming replication protocol |