Re: compute_query_id and pg_stat_statements
Julien Rouhaud <rjuju123@gmail.com>
From: Julien Rouhaud <rjuju123@gmail.com>
To: Pavel Stehule <pavel.stehule@gmail.com>
Cc: Kyotaro Horiguchi <horikyota.ntt@gmail.com>, Magnus Hagander <magnus@hagander.net>, Fujii Masao <masao.fujii@oss.nttdata.com>, Michael Paquier <michael@paquier.xyz>, Andres Freund <andres@anarazel.de>, Tom Lane <tgl@sss.pgh.pa.us>, Alvaro Herrera <alvherre@alvh.no-ip.org>, Stephen Frost <sfrost@snowman.net>, Bruce Momjian <bruce@momjian.us>, Christoph Berg <myon@debian.org>, Peter Eisentraut <peter.eisentraut@enterprisedb.com>, PostgreSQL Hackers <pgsql-hackers@lists.postgresql.org>
Date: 2021-05-12T07:13:39Z
Lists: pgsql-hackers
On Wed, May 12, 2021 at 08:58:45AM +0200, Pavel Stehule wrote: > > I don't like the idea of implicit force enabling any feature flag, but it > is better than current design. But it doesn't look like a robust solution. > > Does it mean that if somebody disables computed_query_id, then > pg_stat_statements will not work? It depends, but if you mean "setting up pg_stat_statements, intentionally disabling in-core queryid calculation and not configuring an alternative source" then yes pg_stat_statements will not work. But I don't see any difference from "someone reduce wal_level and complain that replication does not work" or "someone disable fsync and complain that data got corrupted". We provide a sensible default configuration, you can mess it up if you don't know what you're doing. > Why is there the strong dependency between computed_query_id and > pg_stat_statements? Can this dependency be just optional? Once again no, as it otherwise would mean that postgres unilaterally decides that pg_stat_statements' approach to compute a query identifier is the one and only ultimate truth and nothing else could be useful for anyone.
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