Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 0ab64ab

Browse files
committed
doc: Fix description of some GUCs in docs and postgresql.conf.sample
The following parameters have been imprecise, or incorrect, about their description (PGC_POSTMASTER or PGC_SIGHUP): - autovacuum_work_mem (docs, as of 9.6~) - huge_page_size (docs, as of 14~) - max_logical_replication_workers (docs, as of 10~) - max_sync_workers_per_subscription (docs, as of 10~) - min_dynamic_shared_memory (docs, as of 14~) - recovery_init_sync_method (postgresql.conf.sample, as of 14~) - remove_temp_files_after_crash (docs, as of 14~) - restart_after_crash (docs, as of 9.6~) - ssl_min_protocol_version (docs, as of 12~) - ssl_max_protocol_version (docs, as of 12~) This commit adjusts the description of all these parameters to be more consistent with the practice used for the others. Revewed-by: Justin Pryzby Discussion: https://postgr.es/m/YK2ltuLpe+FbRXzA@paquier.xyz Backpatch-through: 9.6
1 parent 9012e55 commit 0ab64ab

File tree

1 file changed

+23
-2
lines changed

1 file changed

+23
-2
lines changed

doc/src/sgml/config.sgml

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1377,6 +1377,11 @@ include_dir 'conf.d'
13771377
The default is <literal>TLSv1.2</literal>, which satisfies industry
13781378
best practices as of this writing.
13791379
</para>
1380+
1381+
<para>
1382+
This parameter can only be set in the <filename>postgresql.conf</filename>
1383+
file or on the server command line.
1384+
</para>
13801385
</listitem>
13811386
</varlistentry>
13821387

@@ -1395,6 +1400,11 @@ include_dir 'conf.d'
13951400
useful for testing or if some component has issues working with a
13961401
newer protocol.
13971402
</para>
1403+
1404+
<para>
1405+
This parameter can only be set in the <filename>postgresql.conf</filename>
1406+
file or on the server command line.
1407+
</para>
13981408
</listitem>
13991409
</varlistentry>
14001410

@@ -1777,6 +1787,9 @@ include_dir 'conf.d'
17771787
the value of <xref linkend="guc-maintenance-work-mem"/> should
17781788
be used instead. The setting has no effect on the behavior of
17791789
<command>VACUUM</command> when run in other contexts.
1790+
This parameter can only be set in the
1791+
<filename>postgresql.conf</filename> file or on the server command
1792+
line.
17801793
</para>
17811794
</listitem>
17821795
</varlistentry>
@@ -4611,7 +4624,8 @@ ANY <replaceable class="parameter">num_sync</replaceable> ( <replaceable class="
46114624
<varname>max_worker_processes</varname>.
46124625
</para>
46134626
<para>
4614-
The default value is 4.
4627+
The default value is 4. This parameter can only be set at server
4628+
start.
46154629
</para>
46164630
</listitem>
46174631
</varlistentry>
@@ -4636,7 +4650,9 @@ ANY <replaceable class="parameter">num_sync</replaceable> ( <replaceable class="
46364650
<varname>max_logical_replication_workers</varname>.
46374651
</para>
46384652
<para>
4639-
The default value is 2.
4653+
The default value is 2. This parameter can only be set in the
4654+
<filename>postgresql.conf</filename> file or on the server command
4655+
line.
46404656
</para>
46414657
</listitem>
46424658
</varlistentry>
@@ -9479,6 +9495,11 @@ dynamic_library_path = 'C:\tools\postgresql;H:\my_project\lib;$libdir'
94799495
useful to disable the restart so that the clusterware can gain
94809496
control and take any actions it deems appropriate.
94819497
</para>
9498+
9499+
<para>
9500+
This parameter can only be set in the <filename>postgresql.conf</filename>
9501+
file or on the server command line.
9502+
</para>
94829503
</listitem>
94839504
</varlistentry>
94849505

0 commit comments

Comments
 (0)