diff options
author | Amit Kapila <akapila@postgresql.org> | 2021-03-01 08:23:41 +0530 |
---|---|---|
committer | Amit Kapila <akapila@postgresql.org> | 2021-03-01 08:23:41 +0530 |
commit | cf54e04b9e29a13c5e7c2386c5e2ff785e830414 (patch) | |
tree | a99360278f6b5cdd77c363c27268ca41b8fe3bc3 | |
parent | b4e3dc7fd420cdc2287f30a638c4affd071f01b2 (diff) | |
download | postgresql-cf54e04b9e29a13c5e7c2386c5e2ff785e830414.tar.gz postgresql-cf54e04b9e29a13c5e7c2386c5e2ff785e830414.zip |
Update docs of logical replication for commit ce0fdbfe97.
Forgot to update the logical replication configuration settings page.
After commit ce0fdbfe97, table synchronization workers also started using
replication origins to track the progress and the same should be reflected
in docs.
Author: Amit Kapila
Discussion: https://postgr.es/m/CAA4eK1KkbppndxxRKbaT2sXrLkdPwy44F4pjEZ0EDrVjD9MPjQ@mail.gmail.com
-rw-r--r-- | doc/src/sgml/logical-replication.sgml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/sgml/logical-replication.sgml b/doc/src/sgml/logical-replication.sgml index d0742f2c526..9cd3f3fbb3d 100644 --- a/doc/src/sgml/logical-replication.sgml +++ b/doc/src/sgml/logical-replication.sgml @@ -604,10 +604,10 @@ <para> The subscriber also requires the <varname>max_replication_slots</varname> to be set. In this case it should be set to at least the number of - subscriptions that will be added to the subscriber. - <varname>max_logical_replication_workers</varname> must be set to at - least the number of subscriptions, again plus some reserve for the table - synchronization. Additionally the <varname>max_worker_processes</varname> + subscriptions that will be added to the subscriber, plus some reserve for + table synchronization. <varname>max_logical_replication_workers</varname> + must be set to at least the number of subscriptions, again plus some reserve + for the table synchronization. Additionally the <varname>max_worker_processes</varname> may need to be adjusted to accommodate for replication workers, at least (<varname>max_logical_replication_workers</varname> + <literal>1</literal>). Note that some extensions and parallel queries |