summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Paquier2020-08-17 01:24:48 +0000
committerMichael Paquier2020-08-17 01:24:48 +0000
commit5dd3a33449612b153dc26eabcfa540e0ad3c361d (patch)
treedcd439f042ef81cdaef8afdb09659bde18baf973
parentd8a22a387b484e73e5a938874dc3a737452c4f1a (diff)
doc: Fix description about bgwriter and checkpoint in HA section
Since 806a2ae, the work of the bgwriter is split the checkpointer, but a portion of the documentation did not get the message. Author: Masahiko Sawada Discussion: https://postgr.es/m/CA+fd4k6jXxjAtjMVC=wG3=QGpauZBtcgN3Jhw+oV7zXGKVLKzQ@mail.gmail.com Backpatch-through: 9.5
-rw-r--r--doc/src/sgml/high-availability.sgml7
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/src/sgml/high-availability.sgml b/doc/src/sgml/high-availability.sgml
index a15e544eb5..8651e19213 100644
--- a/doc/src/sgml/high-availability.sgml
+++ b/doc/src/sgml/high-availability.sgml
@@ -2226,9 +2226,10 @@ LOG: database system is ready to accept read only connections
</para>
<para>
- The background writer is active during recovery and will perform
- restartpoints (similar to checkpoints on the primary) and normal block
- cleaning activities. This can include updates of the hint bit
+ The checkpointer process and the background writer process are active during
+ recovery. The checkpointer process will perform restartpoints (similar to
+ checkpoints on the primary) and the background writer process will perform
+ normal block cleaning activities. This can include updates of the hint bit
information stored on the standby server.
The <command>CHECKPOINT</> command is accepted during recovery,
though it performs a restartpoint rather than a new checkpoint.