Re: compute_query_id and pg_stat_statements
Fujii Masao <masao.fujii@oss.nttdata.com>
From: Fujii Masao <masao.fujii@oss.nttdata.com>
To: Julien Rouhaud <rjuju123@gmail.com>, Michael Paquier <michael@paquier.xyz>
Cc: Andres Freund <andres@anarazel.de>, Tom Lane <tgl@sss.pgh.pa.us>,
Alvaro Herrera <alvherre@alvh.no-ip.org>, Stephen Frost
<sfrost@snowman.net>, Magnus Hagander <magnus@hagander.net>,
Bruce Momjian <bruce@momjian.us>, Christoph Berg <myon@debian.org>,
Peter Eisentraut <peter.eisentraut@enterprisedb.com>,
PostgreSQL Developers <pgsql-hackers@lists.postgresql.org>
Date: 2021-05-11T08:41:53Z
Lists: pgsql-hackers
On 2021/05/11 16:35, Julien Rouhaud wrote: > Anyway, PFA a patch that implement a [off | on | auto] compute_query_id, and > provides a new queryIdWanted() function to let third party plugins inform us > that they want a query id if possible. Thanks! > As it was noted somewhere in that thread, that's a hack on top on the GUC > machinery, so compute_query_id will display "on" rather than "auto" (or "auto > and enabled" or whatever) since GUC isn't designed to handle that behavior. Can't we work around this issue by making queryIdWanted() set another flag like query_id_wanted instead of overwriting compute_query_id? If we do this, query id computation is necessary when "compute_query_id == COMPUTE_QUERY_ID_ON || (compute_query_id == COMPUTE_QUERY_ID_AUTO && query_id_wanted)". Regards, -- Fujii Masao Advanced Computing Technology Center Research and Development Headquarters NTT DATA CORPORATION
Commits
-
Allow compute_query_id to be set to 'auto' and make it default
- cafde58b337e 14.0 landed
-
Move pg_stat_statements query jumbling to core.
- 5fd9dfa5f50e 14.0 cited