aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2024-02-15 16:45:03 -0500
committerTom Lane <tgl@sss.pgh.pa.us>2024-02-15 16:45:03 -0500
commit5c9f2f9398b46a283dcdf4366aaeb06eb04aa76a (patch)
tree905fb8bf3491a56c22bf838e1d75429c6f75f5e5
parent9f133763961e280d8ba692bcad0b061b861e9138 (diff)
downloadpostgresql-5c9f2f9398b46a283dcdf4366aaeb06eb04aa76a.tar.gz
postgresql-5c9f2f9398b46a283dcdf4366aaeb06eb04aa76a.zip
Doc: improve a couple of comments in postgresql.conf.sample.
Clarify comments associated with max_parallel_workers and related settings. Per bug #18343 from Christopher Kline. Discussion: https://postgr.es/m/18343-3a5e903d1d3692ab@postgresql.org
-rw-r--r--src/backend/utils/misc/postgresql.conf.sample6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample
index da10b43dac3..770118ad5e3 100644
--- a/src/backend/utils/misc/postgresql.conf.sample
+++ b/src/backend/utils/misc/postgresql.conf.sample
@@ -195,9 +195,9 @@
#effective_io_concurrency = 1 # 1-1000; 0 disables prefetching
#maintenance_io_concurrency = 10 # 1-1000; 0 disables prefetching
#max_worker_processes = 8 # (change requires restart)
-#max_parallel_workers_per_gather = 2 # taken from max_parallel_workers
-#max_parallel_maintenance_workers = 2 # taken from max_parallel_workers
-#max_parallel_workers = 8 # maximum number of max_worker_processes that
+#max_parallel_workers_per_gather = 2 # limited by max_parallel_workers
+#max_parallel_maintenance_workers = 2 # limited by max_parallel_workers
+#max_parallel_workers = 8 # number of max_worker_processes that
# can be used in parallel operations
#parallel_leader_participation = on