From 7b1dbf0a8d1d4e1e6d01a76dc45a3216e8a16d94 Mon Sep 17 00:00:00 2001 From: Robert Haas Date: Thu, 18 Jan 2024 09:25:28 -0500 Subject: [PATCH] More documentation updates for incremental backup. Add new terms to glossary. Add a reference to walsummarizer to monitoring.sgml. Matthias van de Meent and Robert Haas Discussion: http://postgr.es/m/CAEze2WjhdVCqEe_qqEok3NA6DwUdOGSBjAxzmYdAqiaaH1uRcg@mail.gmail.com --- doc/src/sgml/glossary.sgml | 35 +++++++++++++++++++++++++++++++++++ doc/src/sgml/monitoring.sgml | 3 ++- 2 files changed, 37 insertions(+), 1 deletion(-) diff --git a/doc/src/sgml/glossary.sgml b/doc/src/sgml/glossary.sgml index 5815fa4471..a0150e5c48 100644 --- a/doc/src/sgml/glossary.sgml +++ b/doc/src/sgml/glossary.sgml @@ -893,6 +893,27 @@ + + Incremental backup + + + A special base backup + that for some files may contain only those pages that were modified since + a previous backup, as opposed to the full contents of every file. Like + base backups, it is generated by the tool . + + + To restore incremental backups the tool + is used, which combines incremental backups with a base backup and + WAL to restore a + database cluster to + a consistent state. + + + For more information, see . + + + Insert @@ -2157,6 +2178,20 @@ + + WAL summarizer (process) + + + A special backend process + that summarizes WAL data for + incremental backups. + + + For more information, see . + + + + WAL writer (process) diff --git a/doc/src/sgml/monitoring.sgml b/doc/src/sgml/monitoring.sgml index b804eb8b5e..6e74138a69 100644 --- a/doc/src/sgml/monitoring.sgml +++ b/doc/src/sgml/monitoring.sgml @@ -999,7 +999,8 @@ postgres 27093 0.0 0.0 30096 2752 ? Ss 11:34 0:00 postgres: ser client backend, checkpointer, archiver, standalone backend, startup, walreceiver, - walsender and walwriter. + walsender, walwriter and + walsummarizer. In addition, background workers registered by extensions may have additional types. -- 2.39.5