Re: Log a sample of transactions

From: Masahiko Sawada <sawada(dot)mshk(at)gmail(dot)com>
To: Adrien NAYRAT <adrien(dot)nayrat(at)anayrat(dot)info>
Cc: Andres Freund <andres(at)anarazel(dot)de>, "Kuroda, Hayato" <kuroda(dot)hayato(at)jp(dot)fujitsu(dot)com>, "pgsql-hackers(at)lists(dot)postgresql(dot)org" <pgsql-hackers(at)lists(dot)postgresql(dot)org>
Subject: Re: Log a sample of transactions
Date: 2019-03-28 09:40:24
Message-ID: CAD21AoCg4uDfqSr17L6BvO=aL68n8XViV0DeSC35wWdjMpCA6w@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On Thu, Mar 28, 2019 at 6:33 PM Adrien NAYRAT
<adrien(dot)nayrat(at)anayrat(dot)info> wrote:
>
> Hello,
>
> On 3/28/19 3:18 AM, Masahiko Sawada wrote:
> >>>
> >>> Sorry, I changed that, someone suggest using either "0" and "1", or
> >>> "0.0" and "1.0" but not mixing both.
> >
> > Agreed with using "0.0" and "1.0".
> >
> >>> I will remove this change.
> >>>
> >
> > --- a/src/backend/utils/misc/postgresql.conf.sample
> > +++ b/src/backend/utils/misc/postgresql.conf.sample
> > +#log_transaction_sample_rate = 0 # Fraction of transactions
> > whose statements
> > + # are logged regardless of
> > their duration. 1.0 logs all
> > + # statements from all
> > transactions, 0 never logs.
> >
> > --- a/src/backend/utils/misc/guc.c
> > +++ b/src/backend/utils/misc/guc.c
> > + {"log_transaction_sample_rate", PGC_SUSET, LOGGING_WHEN,
> > + gettext_noop("Set the fraction of transactions
> > to log for new transactions."),
> > + gettext_noop("Logs all statements from a
> > fraction of transactions. "
> > + "Use a value between
> > 0 (never log) and 1 (log all "
> > + "statements for all
> > transactions).")
> >
> > I think it would be better to use the same number in both guc.c and
> > postgresql.conf.sample. How about unifying them to "0.0" and "1.0" for
> > consistency?
> >
>
> I changed to use both 0.0 and 1.0.
>

Thank you for updating the patch!

The patch looks good to me. I'll mark this patch as Ready for
Committer if other reviewer has no review comment on v7 patch.

Regards,

--
Masahiko Sawada
NIPPON TELEGRAPH AND TELEPHONE CORPORATION
NTT Open Source Software Center

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Christoph Berg 2019-03-28 09:45:10 Re: Log a sample of transactions
Previous Message Alexander Korotkov 2019-03-28 09:38:30 Re: jsonpath