Thread

Commits

  1. Add %P to log_line_prefix for parallel group leader

  2. Tweak behavior of pg_stat_activity.leader_pid

  3. Add leader_pid to pg_stat_activity

  1. expose parallel leader in CSV and log_line_prefix

    Justin Pryzby <pryzby@telsasoft.com> — 2020-03-15T11:18:31Z

    See also:
    https://commitfest.postgresql.org/27/2390/
    https://www.postgresql.org/message-id/flat/CAOBaU_Yy5bt0vTPZ2_LUM6cUcGeqmYNoJ8-Rgto+c2+w3defYA@mail.gmail.com
    b025f32e0b Add leader_pid to pg_stat_activity
    
    -- 
    Justin
    
  2. Re: expose parallel leader in CSV and log_line_prefix

    Julien Rouhaud <rjuju123@gmail.com> — 2020-03-15T11:49:33Z

    On Sun, Mar 15, 2020 at 06:18:31AM -0500, Justin Pryzby wrote:
    > See also:
    > https://commitfest.postgresql.org/27/2390/
    > https://www.postgresql.org/message-id/flat/CAOBaU_Yy5bt0vTPZ2_LUM6cUcGeqmYNoJ8-Rgto+c2+w3defYA@mail.gmail.com
    > b025f32e0b Add leader_pid to pg_stat_activity
    
    
    FTR this is a followup of https://www.postgresql.org/message-id/20200315095728.GA26184%40telsasoft.com
    
    +1 for the feature.  Regarding the patch:
    
    
    +           case 'k':
    +               if (MyBackendType != B_BG_WORKER)
    +                   ; /* Do nothing */
    
    
    Isn't the test inverted?  Also a bgworker could run parallel queries through
    SPI I think, should we really ignore bgworkers?
    
    +               else if (!MyProc->lockGroupLeader)
    +                   ; /* Do nothing */
    
    
    There should be a test that MyProc isn't NULL.
    
    +               else if (padding != 0)
    +                   appendStringInfo(buf, "%*d", padding, MyProc->lockGroupLeader->pid);
    +               else
    +                   appendStringInfo(buf, "%d", MyProc->lockGroupLeader->pid);
    +               break;
    
    I think that if padding was asked we should append spaces rather than doing
    nothing.
    
    
    
    
  3. Re: expose parallel leader in CSV and log_line_prefix

    Justin Pryzby <pryzby@telsasoft.com> — 2020-03-18T21:25:11Z

    On Sun, Mar 15, 2020 at 12:49:33PM +0100, Julien Rouhaud wrote:
    > On Sun, Mar 15, 2020 at 06:18:31AM -0500, Justin Pryzby wrote:
    > > See also:
    > > https://commitfest.postgresql.org/27/2390/
    > > https://www.postgresql.org/message-id/flat/CAOBaU_Yy5bt0vTPZ2_LUM6cUcGeqmYNoJ8-Rgto+c2+w3defYA@mail.gmail.com
    > > b025f32e0b Add leader_pid to pg_stat_activity
    > 
    > FTR this is a followup of https://www.postgresql.org/message-id/20200315095728.GA26184%40telsasoft.com
    
    Yes - but I wasn't going to draw attention to the first patch, in which I did
    something needlessly complicated and indirect. :)
    
    > +           case 'k':
    > +               if (MyBackendType != B_BG_WORKER)
    > +                   ; /* Do nothing */
    > 
    > 
    > Isn't the test inverted?  Also a bgworker could run parallel queries through
    > SPI I think, should we really ignore bgworkers?
    
    I don't think it's reversed, but I think I see your point: the patch is
    supposed to be showing the leader's own PID for the leader itself.  So I think
    that can just be removed.
    
    > +               else if (!MyProc->lockGroupLeader)
    > +                   ; /* Do nothing */
    > 
    > There should be a test that MyProc isn't NULL.
    
    Yes, done.
    
    > +               else if (padding != 0)
    > +                   appendStringInfo(buf, "%*d", padding, MyProc->lockGroupLeader->pid);
    > +               else
    > +                   appendStringInfo(buf, "%d", MyProc->lockGroupLeader->pid);
    > +               break;
    > 
    > I think that if padding was asked we should append spaces rather than doing
    > nothing.
    
    Done
    
    It logs like:
    
    template1=# SET log_temp_files=0; explain analyze SELECT a,COUNT(1) FROM t a JOIN t b USING(a) GROUP BY 1;
    2020-03-15 21:20:47.288 CDT [5537        5537]LOG:  statement: SET log_temp_files=0;
    SET
    2020-03-15 21:20:47.289 CDT [5537        5537]LOG:  statement: explain analyze SELECT a,COUNT(1) FROM t a JOIN t b USING(a) GROUP BY 1;
    2020-03-15 21:20:51.253 CDT [5627        5537]LOG:  temporary file: path "base/pgsql_tmp/pgsql_tmp5627.0", size 6094848
    2020-03-15 21:20:51.253 CDT [5627        5537]STATEMENT:  explain analyze SELECT a,COUNT(1) FROM t a JOIN t b USING(a) GROUP BY 1;
    2020-03-15 21:20:51.254 CDT [5626        5537]LOG:  temporary file: path "base/pgsql_tmp/pgsql_tmp5626.0", size 6103040
    2020-03-15 21:20:51.254 CDT [5626        5537]STATEMENT:  explain analyze SELECT a,COUNT(1) FROM t a JOIN t b USING(a) GROUP BY 1;
    2020-03-15 21:20:51.263 CDT [5537        5537]LOG:  temporary file: path "base/pgsql_tmp/pgsql_tmp5537.1.sharedfileset/o15of16.p0.0", size 557056
    
    Now, with the leader showing its own PID.
    
    This also fixes unsafe access to lockGroupLeader->pid, same issue as in the
    original v1 patch for b025f32e0b.
    
    -- 
    Justin
    
  4. Re: expose parallel leader in CSV and log_line_prefix

    Daniel Gustafsson <daniel@yesql.se> — 2020-07-09T11:48:55Z

    > On 18 Mar 2020, at 22:25, Justin Pryzby <pryzby@telsasoft.com> wrote:
    
    > This also fixes unsafe access to lockGroupLeader->pid, same issue as in the
    > original v1 patch for b025f32e0b.
    
    Julian, having been involved in the other threads around this topic, do you
    have time to review this latest version during the commitfest?
    
    cheers ./daniel
    
    
    
    
  5. Re: expose parallel leader in CSV and log_line_prefix

    Julien Rouhaud <rjuju123@gmail.com> — 2020-07-09T11:53:39Z

    On Thu, Jul 9, 2020 at 1:48 PM Daniel Gustafsson <daniel@yesql.se> wrote:
    >
    > > On 18 Mar 2020, at 22:25, Justin Pryzby <pryzby@telsasoft.com> wrote:
    >
    > > This also fixes unsafe access to lockGroupLeader->pid, same issue as in the
    > > original v1 patch for b025f32e0b.
    >
    > Julian, having been involved in the other threads around this topic, do you
    > have time to review this latest version during the commitfest?
    
    Sure!  I've been quite busy with internal work duties recently but
    I'll review this patch shortly.  Thanks for the reminder!
    
    
    
    
  6. Re: expose parallel leader in CSV and log_line_prefix

    Michael Paquier <michael@paquier.xyz> — 2020-07-10T02:09:40Z

    On Thu, Jul 09, 2020 at 01:53:39PM +0200, Julien Rouhaud wrote:
    > Sure!  I've been quite busy with internal work duties recently but
    > I'll review this patch shortly.  Thanks for the reminder!
    
    Hmm.  In which cases would it be useful to have this information in
    the logs knowing that pg_stat_activity lets us know the link between
    both the leader and its workers?
    --
    Michael
    
  7. Re: expose parallel leader in CSV and log_line_prefix

    Justin Pryzby <pryzby@telsasoft.com> — 2020-07-10T02:20:23Z

    On Fri, Jul 10, 2020 at 11:09:40AM +0900, Michael Paquier wrote:
    > On Thu, Jul 09, 2020 at 01:53:39PM +0200, Julien Rouhaud wrote:
    > > Sure!  I've been quite busy with internal work duties recently but
    > > I'll review this patch shortly.  Thanks for the reminder!
    > 
    > Hmm.  In which cases would it be useful to have this information in
    > the logs knowing that pg_stat_activity lets us know the link between
    > both the leader and its workers?
    
    PSA is an instantaneous view whereas the logs are a record.  That's important
    for shortlived processes (like background workers) or in the case of an ERROR
    or later crash.
    
    Right now, the logs fail to include that information, which is deficient.  Half
    the utility is in showing *that* the log is for a parallel worker, which is
    otherwise not apparent.
    
    -- 
    Justin
    
    
    
    
  8. Re: expose parallel leader in CSV and log_line_prefix

    Julien Rouhaud <rjuju123@gmail.com> — 2020-07-10T15:13:26Z

    On Thu, Jul 09, 2020 at 09:20:23PM -0500, Justin Pryzby wrote:
    > On Fri, Jul 10, 2020 at 11:09:40AM +0900, Michael Paquier wrote:
    > > On Thu, Jul 09, 2020 at 01:53:39PM +0200, Julien Rouhaud wrote:
    > > > Sure!  I've been quite busy with internal work duties recently but
    > > > I'll review this patch shortly.  Thanks for the reminder!
    > > 
    > > Hmm.  In which cases would it be useful to have this information in
    > > the logs knowing that pg_stat_activity lets us know the link between
    > > both the leader and its workers?
    > 
    > PSA is an instantaneous view whereas the logs are a record.  That's important
    > for shortlived processes (like background workers) or in the case of an ERROR
    > or later crash.
    > 
    > Right now, the logs fail to include that information, which is deficient.  Half
    > the utility is in showing *that* the log is for a parallel worker, which is
    > otherwise not apparent.
    
    Yes, I agree that this is a nice thing to have and another smell step toward
    parallel query monitoring.
    
    About the patch:
    
    +           case 'k':
    +               if (MyProc)
    +               {
    +                   PGPROC *leader = MyProc->lockGroupLeader;
    +                   if (leader == NULL)
    +                       /* padding only */
    +                       appendStringInfoSpaces(buf,
    +                               padding > 0 ? padding : -padding);
    +                   else if (padding != 0)
    +                       appendStringInfo(buf, "%*d", padding, leader->pid);
    +                   else
    +                       appendStringInfo(buf, "%d", leader->pid);
    +               }
    +               break;
    
    There's a thinko in the padding handling.  It should be dones whether MyProc
    and/or lockGroupLeader is NULL or not, and only if padding was asked, like it's
    done for case 'd' for instance.
    
    Also, the '%k' escape sounds a bit random.  Is there any reason why we don't
    use any uppercase character for log_line_prefix?  %P could be a better
    alternative, otherwise maybe %g, as GroupLeader/Gather?
    
    
    
    
  9. Re: expose parallel leader in CSV and log_line_prefix

    Justin Pryzby <pryzby@telsasoft.com> — 2020-07-10T16:11:15Z

    On Fri, Jul 10, 2020 at 05:13:26PM +0200, Julien Rouhaud wrote:
    > There's a thinko in the padding handling.  It should be dones whether MyProc
    > and/or lockGroupLeader is NULL or not, and only if padding was asked, like it's
    > done for case 'd' for instance.
    > 
    > Also, the '%k' escape sounds a bit random.  Is there any reason why we don't
    > use any uppercase character for log_line_prefix?  %P could be a better
    > alternative, otherwise maybe %g, as GroupLeader/Gather?
    
    Thanks for looking.  %P is a good idea - it's consistent with ps and pkill and
    probably other %commands.  I also amended the docs.
    
    -- 
    Justin
    
  10. Re: expose parallel leader in CSV and log_line_prefix

    Julien Rouhaud <rjuju123@gmail.com> — 2020-07-10T16:39:09Z

    On Fri, Jul 10, 2020 at 11:11:15AM -0500, Justin Pryzby wrote:
    > On Fri, Jul 10, 2020 at 05:13:26PM +0200, Julien Rouhaud wrote:
    > > There's a thinko in the padding handling.  It should be dones whether MyProc
    > > and/or lockGroupLeader is NULL or not, and only if padding was asked, like it's
    > > done for case 'd' for instance.
    > > 
    > > Also, the '%k' escape sounds a bit random.  Is there any reason why we don't
    > > use any uppercase character for log_line_prefix?  %P could be a better
    > > alternative, otherwise maybe %g, as GroupLeader/Gather?
    > 
    > Thanks for looking.  %P is a good idea - it's consistent with ps and pkill and
    > probably other %commands.  I also amended the docs.
    
    Thanks!
    
    So for the leader == NULL case, the AppendStringInfoSpace is a no-op if no
    padding was asked, so it's probably not worth adding extra code to make it any
    more obvious.
    
    It all looks good to me, I'm marking the patch a ready for committer!
    
    
    
    
  11. Re: expose parallel leader in CSV and log_line_prefix

    Alvaro Herrera <alvherre@2ndquadrant.com> — 2020-07-10T16:45:29Z

    On 2020-Mar-18, Justin Pryzby wrote:
    
    > On Sun, Mar 15, 2020 at 12:49:33PM +0100, Julien Rouhaud wrote:
    
    > template1=# SET log_temp_files=0; explain analyze SELECT a,COUNT(1) FROM t a JOIN t b USING(a) GROUP BY 1;
    > 2020-03-15 21:20:47.288 CDT [5537        5537]LOG:  statement: SET log_temp_files=0;
    > SET
    > 2020-03-15 21:20:47.289 CDT [5537        5537]LOG:  statement: explain analyze SELECT a,COUNT(1) FROM t a JOIN t b USING(a) GROUP BY 1;
    > 2020-03-15 21:20:51.253 CDT [5627        5537]LOG:  temporary file: path "base/pgsql_tmp/pgsql_tmp5627.0", size 6094848
    > 2020-03-15 21:20:51.253 CDT [5627        5537]STATEMENT:  explain analyze SELECT a,COUNT(1) FROM t a JOIN t b USING(a) GROUP BY 1;
    > 2020-03-15 21:20:51.254 CDT [5626        5537]LOG:  temporary file: path "base/pgsql_tmp/pgsql_tmp5626.0", size 6103040
    > 2020-03-15 21:20:51.254 CDT [5626        5537]STATEMENT:  explain analyze SELECT a,COUNT(1) FROM t a JOIN t b USING(a) GROUP BY 1;
    > 2020-03-15 21:20:51.263 CDT [5537        5537]LOG:  temporary file: path "base/pgsql_tmp/pgsql_tmp5537.1.sharedfileset/o15of16.p0.0", size 557056
    
    I think it's overly verbose; all non-parallel backends are going to get
    their own PID twice, and I'm not sure this is going to be great to
    parse.  I think it would be more sensible that if the process does not
    have a parent (leader), %P expands to empty.
    
    -- 
    Álvaro Herrera                https://www.2ndQuadrant.com/
    PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services
    
    
    
    
  12. Re: expose parallel leader in CSV and log_line_prefix

    Justin Pryzby <pryzby@telsasoft.com> — 2020-07-10T16:55:25Z

    On Fri, Jul 10, 2020 at 12:45:29PM -0400, Alvaro Herrera wrote:
    > On 2020-Mar-18, Justin Pryzby wrote:
    > 
    > > On Sun, Mar 15, 2020 at 12:49:33PM +0100, Julien Rouhaud wrote:
    > 
    > > template1=# SET log_temp_files=0; explain analyze SELECT a,COUNT(1) FROM t a JOIN t b USING(a) GROUP BY 1;
    > > 2020-03-15 21:20:47.288 CDT [5537        5537]LOG:  statement: SET log_temp_files=0;
    > > SET
    > > 2020-03-15 21:20:47.289 CDT [5537        5537]LOG:  statement: explain analyze SELECT a,COUNT(1) FROM t a JOIN t b USING(a) GROUP BY 1;
    > > 2020-03-15 21:20:51.253 CDT [5627        5537]LOG:  temporary file: path "base/pgsql_tmp/pgsql_tmp5627.0", size 6094848
    > > 2020-03-15 21:20:51.253 CDT [5627        5537]STATEMENT:  explain analyze SELECT a,COUNT(1) FROM t a JOIN t b USING(a) GROUP BY 1;
    > > 2020-03-15 21:20:51.254 CDT [5626        5537]LOG:  temporary file: path "base/pgsql_tmp/pgsql_tmp5626.0", size 6103040
    > > 2020-03-15 21:20:51.254 CDT [5626        5537]STATEMENT:  explain analyze SELECT a,COUNT(1) FROM t a JOIN t b USING(a) GROUP BY 1;
    > > 2020-03-15 21:20:51.263 CDT [5537        5537]LOG:  temporary file: path "base/pgsql_tmp/pgsql_tmp5537.1.sharedfileset/o15of16.p0.0", size 557056
    > 
    > I think it's overly verbose; all non-parallel backends are going to get
    > their own PID twice, and I'm not sure this is going to be great to
    > parse.  I think it would be more sensible that if the process does not
    > have a parent (leader), %P expands to empty.
    
    That's what's done.
    
    +             <entry>Process ID of the parallel group leader if this process was
    +             at some point involved in parallel query, otherwise null.  For a
    +             parallel group leader itself, this field is set to its own process
    +             ID.</entry>
    
    2020-07-10 11:53:32.304 CDT [16699 ]LOG:  statement: SELECT 1;
    2020-07-10 11:53:32.304 CDT,"pryzbyj","postgres",16699,"[local]",5f089d0b.413b,1,"idle",2020-07-10 11:53:31 CDT,3/4,0,LOG,00000,"statement: SELECT 1;",,,,,,,,,"psql","client backend",
    
    -- 
    Justin
    
    
    
    
  13. Re: expose parallel leader in CSV and log_line_prefix

    Alvaro Herrera <alvherre@2ndquadrant.com> — 2020-07-10T17:16:40Z

    On 2020-Jul-10, Justin Pryzby wrote:
    > On Fri, Jul 10, 2020 at 12:45:29PM -0400, Alvaro Herrera wrote:
    
    > > I think it's overly verbose; all non-parallel backends are going to get
    > > their own PID twice, and I'm not sure this is going to be great to
    > > parse.  I think it would be more sensible that if the process does not
    > > have a parent (leader), %P expands to empty.
    > 
    > That's what's done.
    > 
    > +             <entry>Process ID of the parallel group leader if this process was
    > +             at some point involved in parallel query, otherwise null.  For a
    > +             parallel group leader itself, this field is set to its own process
    > +             ID.</entry>
    
    Oh, okay by me then.
    
    -- 
    Álvaro Herrera                https://www.2ndQuadrant.com/
    PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services
    
    
    
    
  14. Re: expose parallel leader in CSV and log_line_prefix

    Michael Paquier <michael@paquier.xyz> — 2020-07-17T02:41:07Z

    On Fri, Jul 10, 2020 at 01:16:40PM -0400, Alvaro Herrera wrote:
    > On 2020-Jul-10, Justin Pryzby wrote:
    >> That's what's done.
    >> 
    >> +             <entry>Process ID of the parallel group leader if this process was
    >> +             at some point involved in parallel query, otherwise null.  For a
    >> +             parallel group leader itself, this field is set to its own process
    >> +             ID.</entry>
    > 
    > Oh, okay by me then.
    
    Please note that this choice comes from BecomeLockGroupLeader(), where
    a leader registers itself in lockGroupLeader, and remains set as such
    as long as the process is alive so we would always get a value for a
    process once it got involved in parallel query.  This patch is just
    doing what we do in pg_stat_get_activity(), with the padding handling.
    It is true that this may cause log_line_prefix to be overly verbose in
    the case where you keep a lot of sessions alive for long time when
    they got all involved at least once in parallel query as most of them
    would just refer to their own PID, but I think that it is better to be
    consistent with what we do already with pg_stat_activity, as that's
    the data present in the PGPROC entries.
    --
    Michael
    
  15. Re: expose parallel leader in CSV and log_line_prefix

    Alvaro Herrera <alvherre@2ndquadrant.com> — 2020-07-17T02:55:45Z

    On 2020-Jul-17, Michael Paquier wrote:
    
    > Please note that this choice comes from BecomeLockGroupLeader(), where
    > a leader registers itself in lockGroupLeader, and remains set as such
    > as long as the process is alive so we would always get a value for a
    > process once it got involved in parallel query.  This patch is just
    
    Oh, ugh, I don't like that part much.  If you run connections through a
    connection pooler, it's going to be everywhere. Let's put it there only
    if the connection *is* running a parallel query, without being too
    stressed about the startup and teardown sequence.
    
    
    -- 
    Álvaro Herrera                https://www.2ndQuadrant.com/
    PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services
    
    
    
    
  16. Re: expose parallel leader in CSV and log_line_prefix

    Michael Paquier <michael@paquier.xyz> — 2020-07-17T05:01:21Z

    On Thu, Jul 16, 2020 at 10:55:45PM -0400, Alvaro Herrera wrote:
    > Oh, ugh, I don't like that part much.  If you run connections through a
    > connection pooler, it's going to be everywhere. Let's put it there only
    > if the connection *is* running a parallel query, without being too
    > stressed about the startup and teardown sequence.
    
    Hmm.  Knowing if a leader is actually running parallel query or not
    requires a lookup at lockGroupMembers, that itself requires a LWLock.
    I think that it would be better to not require that.  So what if
    instead we logged %P only if Myproc has lockGroupLeader set and it
    does *not* match MyProcPid?  In short, it means that we would get the
    information of a leader for each worker currently running parallel
    query, but that we would not know from the leader if it is running a
    parallel query or not at the moment of the log.  One can then easily
    guess what was happening on the leader by looking at the logs of the
    backend matching with the PID the workers are logging with %P.
    --
    Michael
    
  17. Re: expose parallel leader in CSV and log_line_prefix

    Julien Rouhaud <rjuju123@gmail.com> — 2020-07-17T05:34:54Z

    Hi,
    
    On Fri, Jul 17, 2020 at 7:01 AM Michael Paquier <michael@paquier.xyz> wrote:
    >
    > On Thu, Jul 16, 2020 at 10:55:45PM -0400, Alvaro Herrera wrote:
    > > Oh, ugh, I don't like that part much.  If you run connections through a
    > > connection pooler, it's going to be everywhere. Let's put it there only
    > > if the connection *is* running a parallel query, without being too
    > > stressed about the startup and teardown sequence.
    >
    > Hmm.  Knowing if a leader is actually running parallel query or not
    > requires a lookup at lockGroupMembers, that itself requires a LWLock.
    > I think that it would be better to not require that.  So what if
    > instead we logged %P only if Myproc has lockGroupLeader set and it
    > does *not* match MyProcPid?  In short, it means that we would get the
    > information of a leader for each worker currently running parallel
    > query, but that we would not know from the leader if it is running a
    > parallel query or not at the moment of the log.  One can then easily
    > guess what was happening on the leader by looking at the logs of the
    > backend matching with the PID the workers are logging with %P.
    
    I had the same concern and was thinking about this approach too.
    Another argument is that IIUC any log emitted due to
    log_min_duration_statement wouldn't see the backend as executing a
    parallel query, since the workers would already have been shut down.
    
    
    
    
  18. Re: expose parallel leader in CSV and log_line_prefix

    Alvaro Herrera <alvherre@2ndquadrant.com> — 2020-07-17T15:35:40Z

    > On Fri, Jul 17, 2020 at 7:01 AM Michael Paquier <michael@paquier.xyz> wrote:
    >
    > > Hmm.  Knowing if a leader is actually running parallel query or not
    > > requires a lookup at lockGroupMembers, that itself requires a LWLock.
    > > I think that it would be better to not require that.  So what if
    > > instead we logged %P only if Myproc has lockGroupLeader set and it
    > > does *not* match MyProcPid?
    
    That's what I said first, so +1 for that approach.
    
    -- 
    Álvaro Herrera                https://www.2ndQuadrant.com/
    PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services
    
    
    
    
  19. Re: expose parallel leader in CSV and log_line_prefix

    Justin Pryzby <pryzby@telsasoft.com> — 2020-07-17T20:54:21Z

    On Fri, Jul 17, 2020 at 11:35:40AM -0400, Alvaro Herrera wrote:
    > > On Fri, Jul 17, 2020 at 7:01 AM Michael Paquier <michael@paquier.xyz> wrote:
    > >
    > > > Hmm.  Knowing if a leader is actually running parallel query or not
    > > > requires a lookup at lockGroupMembers, that itself requires a LWLock.
    > > > I think that it would be better to not require that.  So what if
    > > > instead we logged %P only if Myproc has lockGroupLeader set and it
    > > > does *not* match MyProcPid?
    > 
    > That's what I said first, so +1 for that approach.
    
    Ok, but should we then consider changing pg_stat_activity for consistency ?
    Probably in v13 to avoid changing it a year later.
    https://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=b025f32e0b5d7668daec9bfa957edf3599f4baa8
    
    I think the story is that we're exposing to the user a "leader pid" what's
    internally called (and used as) the "lock group leader", which for the leader
    process is set to its own PID.  But I think what we're exposing as leader_pid
    will seem like an implementation artifact to users.  It's unnatural to define a
    leader PID for the leader itself, and I'm guessing that at least 30% of people
    who use pg_stat_activity.leader_pid will be surprised by rows with
    | backend_type='client backend' AND leader_pid IS NOT NULL
    And maybe additionally confused if PSA doesn't match CSV or other log.
    
    Right now, PSA will include processes "were leader" queries like:
    | SELECT pid FROM pg_stat_activity WHERE pid=leader_pid
    If we change it, I think you can get the same thing for a *current* leader like:
    | SELECT pid FROM pg_stat_activity a WHERE EXISTS (SELECT 1 FROM pg_stat_activity b WHERE b.leader_pid=a.pid);
    But once the children die, you can't get that anymore.  Is that a problem ?
    
    I didn't think of it until now, but it would be useful to query logs for
    processes which were involved in parallel process.  (It would be more useful if
    it indicated the query, and not just the process)
    
    I agree that showing the PID as the leader PID while using a connection pooler
    is "noisy".  But I think that's maybe just a consequence of connection pooling.
    As an analogy, I would normally use a query like:
    | SELECT session_line, message, query FROM postgres_log WHERE session_id='..' ORDER BY 1
    But that already doesn't work usefully with connection pooling (and I'm not
    sure how to resolve that other than by not using pooling when logs are useful)
    
    I'm not sure what the answer.  Probably we should either make both expose
    lockGroupLeader exactly (and not filtered) or make both show lockGroupLeader
    only if lockGroupLeader!=getpid().
    
    -- 
    Justin
    
    
    
    
  20. Re: expose parallel leader in CSV and log_line_prefix

    Alvaro Herrera <alvherre@2ndquadrant.com> — 2020-07-17T21:27:21Z

    On 2020-Jul-17, Justin Pryzby wrote:
    
    > Ok, but should we then consider changing pg_stat_activity for consistency ?
    > Probably in v13 to avoid changing it a year later.
    > https://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=b025f32e0b5d7668daec9bfa957edf3599f4baa8
    > 
    > I think the story is that we're exposing to the user a "leader pid" what's
    > internally called (and used as) the "lock group leader", which for the leader
    > process is set to its own PID.  But I think what we're exposing as leader_pid
    > will seem like an implementation artifact to users.
    
    IMO it *is* an implementation artifact if, as you say, the leader PID
    remains set after the parallel query is done.  I mentioned the pgbouncer
    case before: if you run a single parallel query, then the process
    remains a "parallel leader" for days or weeks afterwards even if it
    hasn't run a parallel query ever since.  That doesn't sound great to me.
    
    I think it's understandable and OK if there's a small race condition
    that means you report a process as a leader shortly before or shortly
    after a parallel query is actually executed.  But doing so until backend
    termination seems confusing as well as useless.
    
    -- 
    Álvaro Herrera                https://www.2ndQuadrant.com/
    PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services
    
    
    
    
  21. Re: expose parallel leader in CSV and log_line_prefix

    Justin Pryzby <pryzby@telsasoft.com> — 2020-07-17T22:32:36Z

    On Fri, Jul 17, 2020 at 05:27:21PM -0400, Alvaro Herrera wrote:
    > On 2020-Jul-17, Justin Pryzby wrote:
    > > Ok, but should we then consider changing pg_stat_activity for consistency ?
    > > Probably in v13 to avoid changing it a year later.
    > > https://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=b025f32e0b5d7668daec9bfa957edf3599f4baa8
    > > 
    > > I think the story is that we're exposing to the user a "leader pid" what's
    > > internally called (and used as) the "lock group leader", which for the leader
    > > process is set to its own PID.  But I think what we're exposing as leader_pid
    > > will seem like an implementation artifact to users.
    > 
    > IMO it *is* an implementation artifact if, as you say, the leader PID
    > remains set after the parallel query is done.  I mentioned the pgbouncer
    > case before: if you run a single parallel query, then the process
    > remains a "parallel leader" for days or weeks afterwards even if it
    > hasn't run a parallel query ever since.  That doesn't sound great to me.
    > 
    > I think it's understandable and OK if there's a small race condition
    > that means you report a process as a leader shortly before or shortly
    > after a parallel query is actually executed.  But doing so until backend
    > termination seems confusing as well as useless.
    
    I'm not sure that connection pooling is the strongest argument against the
    current behavior, but we could change it as suggested to show as NULL the
    leader_pid for the leader's own process.  I think that's the intuitive behavior
    a user expects.  Parallel processes are those with leader_pid IS NOT NULL.  If
    we ever used lockGroupLeader for something else, you'd also have to say AND
    backend_type='parallel worker'.
    
    We should talk about doing that for PSA and for v13 as well.  Here or on the
    other thread or a new thread ?  It's a simple enough change, but the question
    is if we want to provide a more "cooked" view whcih hides the internals, and if
    so, is this really enough.
    
    --- a/src/backend/utils/adt/pgstatfuncs.c
    +++ b/src/backend/utils/adt/pgstatfuncs.c
    @@ -737,3 +737,4 @@ pg_stat_get_activity(PG_FUNCTION_ARGS)
                                    leader = proc->lockGroupLeader;
    -                               if (leader)
    +                               if (leader && leader->pid != beentry->st_procpid)
                                    {
                                            values[29] = Int32GetDatum(leader->pid);
    
    -- 
    Justin
    
    
    
    
  22. Re: expose parallel leader in CSV and log_line_prefix

    Justin Pryzby <pryzby@telsasoft.com> — 2020-07-20T23:30:48Z

    On Fri, Jul 17, 2020 at 05:32:36PM -0500, Justin Pryzby wrote:
    > On Fri, Jul 17, 2020 at 05:27:21PM -0400, Alvaro Herrera wrote:
    > > On 2020-Jul-17, Justin Pryzby wrote:
    > > > Ok, but should we then consider changing pg_stat_activity for consistency ?
    > > > Probably in v13 to avoid changing it a year later.
    > > > https://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=b025f32e0b5d7668daec9bfa957edf3599f4baa8
    > > > 
    > > > I think the story is that we're exposing to the user a "leader pid" what's
    > > > internally called (and used as) the "lock group leader", which for the leader
    > > > process is set to its own PID.  But I think what we're exposing as leader_pid
    > > > will seem like an implementation artifact to users.
    > > 
    > > IMO it *is* an implementation artifact if, as you say, the leader PID
    > > remains set after the parallel query is done.  I mentioned the pgbouncer
    > > case before: if you run a single parallel query, then the process
    > > remains a "parallel leader" for days or weeks afterwards even if it
    > > hasn't run a parallel query ever since.  That doesn't sound great to me.
    > > 
    > > I think it's understandable and OK if there's a small race condition
    > > that means you report a process as a leader shortly before or shortly
    > > after a parallel query is actually executed.  But doing so until backend
    > > termination seems confusing as well as useless.
    > 
    > I'm not sure that connection pooling is the strongest argument against the
    > current behavior, but we could change it as suggested to show as NULL the
    > leader_pid for the leader's own process.  I think that's the intuitive behavior
    > a user expects.  Parallel processes are those with leader_pid IS NOT NULL.  If
    > we ever used lockGroupLeader for something else, you'd also have to say AND
    > backend_type='parallel worker'.
    > 
    > We should talk about doing that for PSA and for v13 as well.  Here or on the
    > other thread or a new thread ?  It's a simple enough change, but the question
    > is if we want to provide a more "cooked" view whcih hides the internals, and if
    > so, is this really enough.
    > 
    > --- a/src/backend/utils/adt/pgstatfuncs.c
    > +++ b/src/backend/utils/adt/pgstatfuncs.c
    > @@ -737,3 +737,4 @@ pg_stat_get_activity(PG_FUNCTION_ARGS)
    >                                 leader = proc->lockGroupLeader;
    > -                               if (leader)
    > +                               if (leader && leader->pid != beentry->st_procpid)
    >                                 {
    >                                         values[29] = Int32GetDatum(leader->pid);
    
    This thread is about a new feature that I proposed which isn't yet committed
    (logging leader_pid).  But it raises a question which is immediately relevant
    to pg_stat_activity.leader_pid, which is committed for v13.  So feel free to
    move to a new thread or to the thread for commit b025f3.
    
    I added this to the Opened Items list so it's not lost.
    
    I see a couple options:
    
    - Update the documentation only, saying something like "leader_pid: the lock
      group leader.  For a process involved in parallel query, this is the parallel
      leader.  In particular, for the leader process itself, leader_pid = pid, and
      it is not reset until the leader terminates (it does not change when parallel
      workers exit).  This leaves in place the "raw" view of the data structure,
      which can be desirable, but can be perceived as exposing unfriendly
      implementation details.
    
    - Functional change to show leader_pid = NULL for the leader itself.  Maybe
      the columns should only be not-NULL when st_backendType == B_BG_WORKER &&
      bgw_type='parallel worker'.  Update documentation to say: "leader_pid: for
      parallel workers, the PID of their leader process".  (not a raw view of the
      "lock group leader").
    
    - ??
    
    -- 
    Justin
    
    
    
    
  23. Re: expose parallel leader in CSV and log_line_prefix

    Michael Paquier <michael@paquier.xyz> — 2020-07-21T03:51:45Z

    On Mon, Jul 20, 2020 at 06:30:48PM -0500, Justin Pryzby wrote:
    > This thread is about a new feature that I proposed which isn't yet committed
    > (logging leader_pid).  But it raises a question which is immediately relevant
    > to pg_stat_activity.leader_pid, which is committed for v13.  So feel free to
    > move to a new thread or to the thread for commit b025f3.
    
    For a change of this size, with everybody involved in the past
    discussion already on this thread, and knowing that you already
    created an open item pointing to this part of the thread, I am not
    sure that I would bother spawning a new thread now :) 
    
    > I see a couple options:
    > 
    > - Update the documentation only, saying something like "leader_pid: the lock
    >   group leader.  For a process involved in parallel query, this is the parallel
    >   leader.  In particular, for the leader process itself, leader_pid = pid, and
    >   it is not reset until the leader terminates (it does not change when parallel
    >   workers exit).  This leaves in place the "raw" view of the data structure,
    >   which can be desirable, but can be perceived as exposing unfriendly
    >   implementation details.
    > 
    > - Functional change to show leader_pid = NULL for the leader itself.  Maybe
    >   the columns should only be not-NULL when st_backendType == B_BG_WORKER &&
    >   bgw_type='parallel worker'.  Update documentation to say: "leader_pid: for
    >   parallel workers, the PID of their leader process".  (not a raw view of the
    >   "lock group leader").
    
    Yeah, I don't mind revisiting that per the connection pooler argument.
    And I'd rather keep the simple suggestion of upthread to leave the
    field as NULL for the parallel group leader with a PID match but not a
    backend type check so as this could be useful for other types of
    processes.  This leads me to the attached with the docs updated
    (tested with read-only pgbench spawning parallel workers with
    pg_stat_activity queried in parallel), to be applied down to 13.
    Thoughts are welcome.
    --
    Michael
    
  24. Re: expose parallel leader in CSV and log_line_prefix

    Justin Pryzby <pryzby@telsasoft.com> — 2020-07-21T04:12:31Z

    On Tue, Jul 21, 2020 at 12:51:45PM +0900, Michael Paquier wrote:
    > And I'd rather keep the simple suggestion of upthread to leave the
    > field as NULL for the parallel group leader with a PID match but not a
    > backend type check so as this could be useful for other types of
    > processes.
    
    The documentation could talk about either:
    
    1) "lock group leader" - low-level, raw view of the internal data structure
    (with a secondary mention that "for a parallel process, this is its parallel
    leader).
    2) "parallel leaders" high-level, user-facing, "cooked" view;
    
    Right now it doesn't matter, but it seems that if we document the high-level
    "parallel leader", then we don't need to accomodate future uses (at least until
    the future happens).
    
    > diff --git a/doc/src/sgml/monitoring.sgml b/doc/src/sgml/monitoring.sgml
    > index dc49177c78..15c598b2a5 100644
    > --- a/doc/src/sgml/monitoring.sgml
    > +++ b/doc/src/sgml/monitoring.sgml
    > @@ -687,12 +687,9 @@ postgres   27093  0.0  0.0  30096  2752 ?        Ss   11:34   0:00 postgres: ser
    >         <structfield>leader_pid</structfield> <type>integer</type>
    >        </para>
    >        <para>
    > -       Process ID of the parallel group leader if this process is or
    > -       has been involved in parallel query, or null. This field is set
    > -       when a process wants to cooperate with parallel workers, and
    > -       remains set as long as the process exists. For a parallel group leader,
    > -       this field is set to its own process ID. For a parallel worker,
    > -       this field is set to the process ID of the parallel group leader.
    > +       Process ID of the parallel group leader if this process is involved
    > +       in parallel query, or null.  For a parallel group leader, this field
    > +       is <literal>NULL</literal>.
    >        </para></entry>
    >       </row>
    
    FWIW , I prefer something like my earlier phrase:
    
    | For a parallel worker, this is the Process ID of its leader process.  Null
    | for processes which are not parallel workers.
    
    -- 
    Justin
    
    
    
    
  25. Re: expose parallel leader in CSV and log_line_prefix

    Michael Paquier <michael@paquier.xyz> — 2020-07-21T04:33:25Z

    On Mon, Jul 20, 2020 at 11:12:31PM -0500, Justin Pryzby wrote:
    > On Tue, Jul 21, 2020 at 12:51:45PM +0900, Michael Paquier wrote:
    > The documentation could talk about either:
    > 
    > 1) "lock group leader" - low-level, raw view of the internal data structure
    > (with a secondary mention that "for a parallel process, this is its parallel
    > leader).
    > 2) "parallel leaders" high-level, user-facing, "cooked" view;
    > 
    > Right now it doesn't matter, but it seems that if we document the high-level
    > "parallel leader", then we don't need to accomodate future uses (at least until
    > the future happens).
    
    Hmm.  Not sure.  This sounds like material for a separate and larger
    patch.
    
    >>        <para>
    >> -       Process ID of the parallel group leader if this process is or
    >> -       has been involved in parallel query, or null. This field is set
    >> -       when a process wants to cooperate with parallel workers, and
    >> -       remains set as long as the process exists. For a parallel group leader,
    >> -       this field is set to its own process ID. For a parallel worker,
    >> -       this field is set to the process ID of the parallel group leader.
    >> +       Process ID of the parallel group leader if this process is involved
    >> +       in parallel query, or null.  For a parallel group leader, this field
    >> +       is <literal>NULL</literal>.
    >>        </para></entry>
    > 
    > FWIW , I prefer something like my earlier phrase:
    > 
    > | For a parallel worker, this is the Process ID of its leader process.  Null
    > | for processes which are not parallel workers.
    
    I preferred mine, and it seems to me that the first sentence of the
    previous patch covers already both things mentioned in your sentence.
    It also seems to me that it is an important thing to directly outline
    that this field remains NULL for group leaders.
    --
    Michael
    
  26. Re: expose parallel leader in CSV and log_line_prefix

    Michael Paquier <michael@paquier.xyz> — 2020-07-21T04:38:21Z

    On Fri, Jul 17, 2020 at 07:34:54AM +0200, Julien Rouhaud wrote:
    > I had the same concern and was thinking about this approach too.
    > Another argument is that IIUC any log emitted due to
    > log_min_duration_statement wouldn't see the backend as executing a
    > parallel query, since the workers would already have been shut down.
    
    Not sure that it is worth bothering about this case.  You could also
    have a backend killed by log_min_duration_statement on a query that
    did not involve parallel query, where you would still report the PID
    if it got involved at least once in parallel query for a query before
    that.
    --
    Michael
    
  27. Re: expose parallel leader in CSV and log_line_prefix

    Julien Rouhaud <rjuju123@gmail.com> — 2020-07-22T12:25:29Z

    On Tue, Jul 21, 2020 at 6:33 AM Michael Paquier <michael@paquier.xyz> wrote:
    >
    > On Mon, Jul 20, 2020 at 11:12:31PM -0500, Justin Pryzby wrote:
    > > On Tue, Jul 21, 2020 at 12:51:45PM +0900, Michael Paquier wrote:
    > > The documentation could talk about either:
    > >
    > > 1) "lock group leader" - low-level, raw view of the internal data structure
    > > (with a secondary mention that "for a parallel process, this is its parallel
    > > leader).
    > > 2) "parallel leaders" high-level, user-facing, "cooked" view;
    > >
    > > Right now it doesn't matter, but it seems that if we document the high-level
    > > "parallel leader", then we don't need to accomodate future uses (at least until
    > > the future happens).
    >
    > Hmm.  Not sure.  This sounds like material for a separate and larger
    > patch.
    >
    > >>        <para>
    > >> -       Process ID of the parallel group leader if this process is or
    > >> -       has been involved in parallel query, or null. This field is set
    > >> -       when a process wants to cooperate with parallel workers, and
    > >> -       remains set as long as the process exists. For a parallel group leader,
    > >> -       this field is set to its own process ID. For a parallel worker,
    > >> -       this field is set to the process ID of the parallel group leader.
    > >> +       Process ID of the parallel group leader if this process is involved
    > >> +       in parallel query, or null.  For a parallel group leader, this field
    > >> +       is <literal>NULL</literal>.
    > >>        </para></entry>
    > >
    > > FWIW , I prefer something like my earlier phrase:
    > >
    > > | For a parallel worker, this is the Process ID of its leader process.  Null
    > > | for processes which are not parallel workers.
    >
    > I preferred mine, and it seems to me that the first sentence of the
    > previous patch covers already both things mentioned in your sentence.
    > It also seems to me that it is an important thing to directly outline
    > that this field remains NULL for group leaders.
    
    I agree that Michael's version seems less error prone and makes
    everything crystal clear, so +1 for it.
    
    
    
    
  28. Re: expose parallel leader in CSV and log_line_prefix

    Alvaro Herrera <alvherre@2ndquadrant.com> — 2020-07-22T15:36:05Z

    On 2020-Jul-21, Michael Paquier wrote:
    
    > On Mon, Jul 20, 2020 at 11:12:31PM -0500, Justin Pryzby wrote:
    
    > >> +       Process ID of the parallel group leader if this process is involved
    > >> +       in parallel query, or null.  For a parallel group leader, this field
    > >> +       is <literal>NULL</literal>.
    > >>        </para></entry>
    
    > > | For a parallel worker, this is the Process ID of its leader process.  Null
    > > | for processes which are not parallel workers.
    
    How about we combine both.  "Process ID of the parallel group leader, if
    this process is a parallel query worker.  NULL if this process is a
    parallel group leader or does not participate in parallel query".
    
    -- 
    Álvaro Herrera                https://www.2ndQuadrant.com/
    PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services
    
    
    
    
  29. Re: expose parallel leader in CSV and log_line_prefix

    Michael Paquier <michael@paquier.xyz> — 2020-07-23T00:52:14Z

    On Wed, Jul 22, 2020 at 11:36:05AM -0400, Alvaro Herrera wrote:
    > How about we combine both.  "Process ID of the parallel group leader, if
    > this process is a parallel query worker.  NULL if this process is a
    > parallel group leader or does not participate in parallel query".
    
    Sounds fine to me.  Thanks.
    
    Do others have any objections with this wording?
    --
    Michael
    
  30. Re: expose parallel leader in CSV and log_line_prefix

    Tom Lane <tgl@sss.pgh.pa.us> — 2020-07-23T00:59:04Z

    Michael Paquier <michael@paquier.xyz> writes:
    > On Wed, Jul 22, 2020 at 11:36:05AM -0400, Alvaro Herrera wrote:
    >> How about we combine both.  "Process ID of the parallel group leader, if
    >> this process is a parallel query worker.  NULL if this process is a
    >> parallel group leader or does not participate in parallel query".
    
    > Sounds fine to me.  Thanks.
    > Do others have any objections with this wording?
    
    Is "NULL" really le mot juste here?  If we're talking about text strings,
    as the thread title implies (I've not read the patch), then I think you
    should say "empty string", because the SQL concept of null doesn't apply.
    
    			regards, tom lane
    
    
    
    
  31. Re: expose parallel leader in CSV and log_line_prefix

    Michael Paquier <michael@paquier.xyz> — 2020-07-23T01:42:36Z

    On Wed, Jul 22, 2020 at 08:59:04PM -0400, Tom Lane wrote:
    > Is "NULL" really le mot juste here?  If we're talking about text strings,
    > as the thread title implies (I've not read the patch), then I think you
    > should say "empty string", because the SQL concept of null doesn't apply.
    
    Sorry for the confusion.  This part of the thread applies to the open
    item for v13 related to pg_stat_activity's leader_pid.  A different
    thread should have been spawned for this specific topic, but things
    are as they are..
    --
    Michael
    
  32. Re: expose parallel leader in CSV and log_line_prefix

    Michael Paquier <michael@paquier.xyz> — 2020-07-26T07:42:06Z

    On Thu, Jul 23, 2020 at 09:52:14AM +0900, Michael Paquier wrote:
    > Sounds fine to me.  Thanks.
    > 
    > Do others have any objections with this wording?
    
    I have used the wording suggested by Alvaro, and applied the patch
    down to 13.  Now let's see about the original item of this thread..
    --
    Michael
    
  33. Re: expose parallel leader in CSV and log_line_prefix

    Justin Pryzby <pryzby@telsasoft.com> — 2020-07-26T18:54:27Z

    On Sun, Jul 26, 2020 at 04:42:06PM +0900, Michael Paquier wrote:
    > On Thu, Jul 23, 2020 at 09:52:14AM +0900, Michael Paquier wrote:
    > > Sounds fine to me.  Thanks.
    > > 
    > > Do others have any objections with this wording?
    > 
    > I have used the wording suggested by Alvaro, and applied the patch
    > down to 13.  Now let's see about the original item of this thread..
    
    Updated with updated wording to avoid "null", per Tom.
    
    -- 
    Justin
    
  34. Re: expose parallel leader in CSV and log_line_prefix

    Michael Paquier <michael@paquier.xyz> — 2020-07-28T01:10:33Z

    On Sun, Jul 26, 2020 at 01:54:27PM -0500, Justin Pryzby wrote:
    > +            <row>
    > +             <entry><literal>%P</literal></entry>
    > +             <entry>For a parallel worker, this is the Process ID of its leader
    > +             process.
    > +             </entry>
    > +             <entry>no</entry>
    > +            </row>
    
    Let's be a maximum simple and consistent with surrounding descriptions
    here and what we have for pg_stat_activity, say:
    "Process ID of the parallel group leader, if this process is a
    parallel query worker."
    
    > +            case 'P':
    > +                if (MyProc)
    > +                {
    > +                    PGPROC *leader = MyProc->lockGroupLeader;
    > +                    if (leader == NULL || leader->pid == MyProcPid)
    > +                        /* padding only */
    > +                        appendStringInfoSpaces(buf,
    > +                                padding > 0 ? padding : -padding);
    > +                    else if (padding != 0)
    > +                        appendStringInfo(buf, "%*d", padding, leader->pid);
    > +                    else
    > +                        appendStringInfo(buf, "%d", leader->pid);
    
    It seems to me we should document here that the check on MyProcPid
    ensures that this only prints the leader PID only for parallel workers
    and discards the leader.
    
    > +    appendStringInfoChar(&buf, ',');
    > +
    > +    /* leader PID */
    > +    if (MyProc)
    > +    {
    > +        PGPROC *leader = MyProc->lockGroupLeader;
    > +        if (leader && leader->pid != MyProcPid)
    > +            appendStringInfo(&buf, "%d", leader->pid);
    > +    }
    > +
    
    Same here.
    
    Except for those nits, I have tested the patch and things behave as we
    want (including padding and docs), so this looks good to me.
    --
    Michael
    
  35. Re: expose parallel leader in CSV and log_line_prefix

    Justin Pryzby <pryzby@telsasoft.com> — 2020-07-31T20:04:48Z

    On Tue, Jul 28, 2020 at 10:10:33AM +0900, Michael Paquier wrote:
    > Except for those nits, I have tested the patch and things behave as we
    > want (including padding and docs), so this looks good to me.
    
    Revised with your suggestions.
    
    -- 
    Justin
    
  36. Re: expose parallel leader in CSV and log_line_prefix

    Justin Pryzby <pryzby@telsasoft.com> — 2020-08-01T03:31:13Z

    On Fri, Jul 31, 2020 at 03:04:48PM -0500, Justin Pryzby wrote:
    > On Tue, Jul 28, 2020 at 10:10:33AM +0900, Michael Paquier wrote:
    > > Except for those nits, I have tested the patch and things behave as we
    > > want (including padding and docs), so this looks good to me.
    > 
    > Revised with your suggestions.
    
    Uh, wrong patch.  2nd attempt.
    
    Also, I was reminded by Tom's c410af098 about this comment:
    
                     * Further note: At least on some platforms, passing %*s rather than
                     * %s to appendStringInfo() is substantially slower, so many of the
                     * cases below avoid doing that unless non-zero padding is in fact
                     * specified.
    
    It seems we can remove that hack and avoid its spiriling conditionals.
    It's cleaner to make that 0001.
    
    -- 
    Justin
    
  37. Re: expose parallel leader in CSV and log_line_prefix

    Michael Paquier <michael@paquier.xyz> — 2020-08-03T04:41:52Z

    On Fri, Jul 31, 2020 at 10:31:13PM -0500, Justin Pryzby wrote:
    > Also, I was reminded by Tom's c410af098 about this comment:
    > 
    >                  * Further note: At least on some platforms, passing %*s rather than
    >                  * %s to appendStringInfo() is substantially slower, so many of the
    >                  * cases below avoid doing that unless non-zero padding is in fact
    >                  * specified.
    > 
    > It seems we can remove that hack and avoid its spiriling conditionals.
    > It's cleaner to make that 0001.
    
    Not sure what 0001 is doing on this thread, so I would suggest to
    create a new thread for that to attract the correct audience.  It is
    true that we should not need that anymore as we use our own
    implementation of sprintf now.
    
    For now, I have taken 0002 as a base, fixed a couple of things (doc
    tweaks, removed unnecessary header inclusion, etc.), and committed it,
    meaning that we are done here.
    --
    Michael