diff options
author | Amit Kapila <akapila@postgresql.org> | 2021-05-25 09:26:53 +0530 |
---|---|---|
committer | Amit Kapila <akapila@postgresql.org> | 2021-05-25 09:26:53 +0530 |
commit | 0734b0e983443882ec509ab4501c30ba9b706f5f (patch) | |
tree | 3b610388f59237b863bd63ad6351d69cbb091f81 /doc/src | |
parent | 01e6f1a842f406170e5f717305e4a6cf0e84b3ee (diff) | |
download | postgresql-0734b0e983443882ec509ab4501c30ba9b706f5f.tar.gz postgresql-0734b0e983443882ec509ab4501c30ba9b706f5f.zip |
Improve docs and error messages for parallel vacuum.
The error messages, docs, and one of the options were using
'parallel degree' to indicate parallelism used by vacuum command. We
normally use 'parallel workers' at other places so change it for parallel
vacuum accordingly.
Author: Bharath Rupireddy
Reviewed-by: Dilip Kumar, Amit Kapila
Backpatch-through: 13
Discussion: https://postgr.es/m/CALj2ACWz=PYrrFXVsEKb9J1aiX4raA+UBe02hdRp_zqDkrWUiw@mail.gmail.com
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/vacuumdb.sgml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/ref/vacuumdb.sgml b/doc/src/sgml/ref/vacuumdb.sgml index 843a82e8711..3e7f7ed68fb 100644 --- a/doc/src/sgml/ref/vacuumdb.sgml +++ b/doc/src/sgml/ref/vacuumdb.sgml @@ -275,11 +275,11 @@ PostgreSQL documentation </varlistentry> <varlistentry> - <term><option>-P <replaceable class="parameter">parallel_degree</replaceable></option></term> - <term><option>--parallel=<replaceable class="parameter">parallel_degree</replaceable></option></term> + <term><option>-P <replaceable class="parameter">parallel_workers</replaceable></option></term> + <term><option>--parallel=<replaceable class="parameter">parallel_workers</replaceable></option></term> <listitem> <para> - Specify the parallel degree of <firstterm>parallel vacuum</firstterm>. + Specify the number of parallel workers for <firstterm>parallel vacuum</firstterm>. This allows the vacuum to leverage multiple CPUs to process indexes. See <xref linkend="sql-vacuum"/>. </para> |