diff options
author | David Rowley | 2023-02-15 08:21:59 +0000 |
---|---|---|
committer | David Rowley | 2023-02-15 08:21:59 +0000 |
commit | 5352ca22e0012d48055453ca9992a9515d811291 (patch) | |
tree | b247f2abbca2b0198280a69117a175c93fe4241b /doc | |
parent | 8e0e0698f12bd77da38f6863ecdbe88a63ed49dc (diff) |
Rename force_parallel_mode to debug_parallel_query
force_parallel_mode is meant to be used to allow us to exercise the
parallel query infrastructure to ensure that it's working as we expect.
It seems some users think this GUC is for forcing the query planner into
picking a parallel plan regardless of the costs. A quick look at the
documentation would have made them realize that they were wrong, but the
GUC is likely too conveniently named which, evidently, seems to often
result in users expecting that it forces the planner into usefully
parallelizing queries.
Here we rename the GUC to something which casual users are less likely to
mistakenly think is what they need to make their query run more quickly.
For now, the old name can still be used. We'll revisit if the old name
mapping can be removed once the buildfarm configs are all updated.
Reviewed-by: John Naylor
Discussion: https://postgr.es/m/CAApHDvrsOi92_uA7PEaHZMH-S4Xv+MGhQWA+GrP8b1kjpS1HjQ@mail.gmail.com
Diffstat (limited to 'doc')
-rw-r--r-- | doc/src/sgml/config.sgml | 8 | ||||
-rw-r--r-- | doc/src/sgml/regress.sgml | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index 8c56b134a8..ecd9aa73ef 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -11091,17 +11091,17 @@ dynamic_library_path = 'C:\tools\postgresql;H:\my_project\lib;$libdir' </listitem> </varlistentry> - <varlistentry id="guc-force-parallel-mode" xreflabel="force_parallel_mode"> - <term><varname>force_parallel_mode</varname> (<type>enum</type>) + <varlistentry id="guc-debug-parallel-query" xreflabel="debug_parallel_query"> + <term><varname>debug_parallel_query</varname> (<type>enum</type>) <indexterm> - <primary><varname>force_parallel_mode</varname> configuration parameter</primary> + <primary><varname>debug_parallel_query</varname> configuration parameter</primary> </indexterm> </term> <listitem> <para> Allows the use of parallel queries for testing purposes even in cases where no performance benefit is expected. - The allowed values of <varname>force_parallel_mode</varname> are + The allowed values of <varname>debug_parallel_query</varname> are <literal>off</literal> (use parallel mode only when it is expected to improve performance), <literal>on</literal> (force parallel query for all queries for which it is thought to be safe), and <literal>regress</literal> (like diff --git a/doc/src/sgml/regress.sgml b/doc/src/sgml/regress.sgml index 117d097390..a08c7a78af 100644 --- a/doc/src/sgml/regress.sgml +++ b/doc/src/sgml/regress.sgml @@ -370,7 +370,7 @@ make check LANG=C ENCODING=EUC_JP set in the <varname>PGOPTIONS</varname> environment variable (for settings that allow this): <screen> -make check PGOPTIONS="-c force_parallel_mode=regress -c work_mem=50MB" +make check PGOPTIONS="-c debug_parallel_query=regress -c work_mem=50MB" </screen> When running against a temporary installation, custom settings can also be set by supplying a pre-written <filename>postgresql.conf</filename>: |