diff options
| author | Fujii Masao <fujii@postgresql.org> | 2020-03-18 23:07:17 +0900 |
|---|---|---|
| committer | Fujii Masao <fujii@postgresql.org> | 2020-03-18 23:08:24 +0900 |
| commit | 375aa3fc2cb21132db6790305b433d81061367e2 (patch) | |
| tree | 9a66062c797f1ad942d9a8dc85b8c4943e1066c5 | |
| parent | 18c41cb6b7140a0d360900c10ac23072579194a1 (diff) | |
Correct the descriptions of recovery-related wait events in docs.
This commit corrects the descriptions of RecoveryWalAll and RecoveryWalStream
wait events in the documentation.
Back-patch to v10 where those wait events were added.
Author: Fujii Masao
Reviewed-by: Kyotaro Horiguchi, Atsushi Torikoshi
Discussion: https://postgr.es/m/124997ee-096a-5d09-d8da-2c7a57d0816e@oss.nttdata.com
| -rw-r--r-- | doc/src/sgml/monitoring.sgml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/src/sgml/monitoring.sgml b/doc/src/sgml/monitoring.sgml index fb1f7b58df6..6cc4d84b5d3 100644 --- a/doc/src/sgml/monitoring.sgml +++ b/doc/src/sgml/monitoring.sgml @@ -1212,11 +1212,15 @@ postgres 27093 0.0 0.0 30096 2752 ? Ss 11:34 0:00 postgres: ser </row> <row> <entry><literal>RecoveryWalAll</literal></entry> - <entry>Waiting for WAL from any kind of source (local, archive or stream) at recovery.</entry> + <entry>Waiting for WAL from a stream at recovery.</entry> </row> <row> <entry><literal>RecoveryWalStream</literal></entry> - <entry>Waiting for WAL from a stream at recovery.</entry> + <entry> + Waiting when WAL data is not available from any kind of sources + (local, archive or stream) before trying again to retrieve WAL data, + at recovery. + </entry> </row> <row> <entry><literal>SysLoggerMain</literal></entry> |
