diff options
author | Robert Haas | 2016-09-19 17:38:21 +0000 |
---|---|---|
committer | Robert Haas | 2016-09-19 17:38:21 +0000 |
commit | 2c8f0d6e53e5dbcf28ee127303b81a6e12942665 (patch) | |
tree | ac6664ae11ae321b2e862ddf40d24d39e58d26cd | |
parent | 3fcc98c990ede7d3b415cc06eb6664aac6e7bbbc (diff) |
Update recovery_min_apply_delay docs for remote_apply mode.
Bernd Helmle, reviewed by Thomas Munro, tweaked by me.
-rw-r--r-- | doc/src/sgml/recovery-config.sgml | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/doc/src/sgml/recovery-config.sgml b/doc/src/sgml/recovery-config.sgml index de3fb10f5b..8c24ae2174 100644 --- a/doc/src/sgml/recovery-config.sgml +++ b/doc/src/sgml/recovery-config.sgml @@ -487,10 +487,17 @@ restore_command = 'copy "C:\\server\\archivedir\\%f" "%p"' # Windows <para> This parameter is intended for use with streaming replication deployments; however, if the parameter is specified it will be honored in all cases. - Synchronous replication is not affected by this setting because there is - not yet any setting to request synchronous apply of transaction commits. + <varname>hot_standby_feedback</> will be delayed by use of this feature which could lead to bloat on the master; use both together with care. + + <warning> + <para> + Synchronous replication is affected by this setting when <varname>synchronous_commit</varname> + is set to <literal>remote_apply</literal>; every <literal>COMMIT</literal> + will need to wait to be applied. + </para> + </warning> </para> </listitem> </varlistentry> |