Re: Feature improvement: can we add queryId for pg_catalog.pg_stat_activity view?

From: Julien Rouhaud <rjuju123(at)gmail(dot)com>
To: Bruce Momjian <bruce(at)momjian(dot)us>
Cc: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, Robert Haas <robertmhaas(at)gmail(dot)com>, Michael Paquier <michael(at)paquier(dot)xyz>, Alvaro Herrera <alvherre(at)alvh(dot)no-ip(dot)org>, torikoshia <torikoshia(at)oss(dot)nttdata(dot)com>, Atsushi Torikoshi <atorik(at)gmail(dot)com>, Tatsuro Yamada <tatsuro(dot)yamada(dot)tf(at)nttcom(dot)co(dot)jp>, Tomas Vondra <tomas(dot)vondra(at)2ndquadrant(dot)com>, Evgeny Efimkin <efimkin(at)yandex-team(dot)ru>, PostgreSQL Hackers <pgsql-hackers(at)lists(dot)postgresql(dot)org>
Subject: Re: Feature improvement: can we add queryId for pg_catalog.pg_stat_activity view?
Date: 2020-10-14 14:21:24
Message-ID: CAOBaU_bMN1KAjn9Xb8Svhzf4CmiBo0OQioKRtxQs0_g9jFVEUg@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On Wed, Oct 14, 2020 at 10:09 PM Bruce Momjian <bruce(at)momjian(dot)us> wrote:
>
> On Wed, Oct 14, 2020 at 05:43:33PM +0800, Julien Rouhaud wrote:
> > On Tue, Oct 13, 2020 at 4:53 AM Bruce Momjian <bruce(at)momjian(dot)us> wrote:
> > >
> > > On Mon, Oct 12, 2020 at 04:07:30PM -0400, Tom Lane wrote:
> > > > Bruce Momjian <bruce(at)momjian(dot)us> writes:
> > > > > On Mon, Oct 12, 2020 at 02:26:15PM -0400, Tom Lane wrote:
> > > > >> Yeah, I agree --- a version number is the wrong way to think about this.
> > > >
> > > > > The version number was to invalidate _all_ query hashes if the
> > > > > algorithm is slightly modified, rather than invalidating just some of
> > > > > them, which could lead to confusion.
> > > >
> > > > Color me skeptical as to the use-case for that. From users' standpoints,
> > > > the hash is mainly going to change when we change the set of parse node
> > > > fields that get hashed. Which is going to happen at every major release
> > > > and no (or at least epsilon) minor releases. So I do not see a point in
> > > > tracking an algorithm version number as such. Seems like make-work.
> > >
> > > OK, I came up with the hash idea only to address one of your concerns
> > > about mismatched hashes for algorithm improvements/changes. Seems we
> > > might as well just document that cross-version hashes are different.
> >
> > Ok, so I tried to implement what seems to be the consensus. First
> > attached patch moves the current pgss queryid computation in core,
> > with a new compute_queryid GUC (on/off). One thing I don't really
>
> Why would someone turn compute_queryid off? Overhead?

Yes, or possibly to use a different algorithm.

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Bruce Momjian 2020-10-14 14:25:23 Re: Feature improvement: can we add queryId for pg_catalog.pg_stat_activity view?
Previous Message Bruce Momjian 2020-10-14 14:09:15 Re: Feature improvement: can we add queryId for pg_catalog.pg_stat_activity view?