From 740c9c8e44dc7c419a2ceb0207c43f7588229e87 Mon Sep 17 00:00:00 2001 From: Daniel Gustafsson Date: Thu, 9 Jul 2026 10:23:22 +0200 Subject: [PATCH] doc: Fix glossary entry for data checksums workers The glossary entry for data checksums workers incorrectly stated that they were auxiliary processes, but they are implementerd as background workers. Fix, and while there, simplify the entry by combining the worker and launcher into a single glossary term. Reported-by: Fujii Masao Discussion: https://postgr.es/m/CAHGQGwEv-C9ia+rBYyePzO8F=5FVvS412ZqcOupazuOb5RafNg@mail.gmail.com --- doc/src/sgml/glossary.sgml | 32 ++++++++++++-------------------- 1 file changed, 12 insertions(+), 20 deletions(-) diff --git a/doc/src/sgml/glossary.sgml b/doc/src/sgml/glossary.sgml index f7f69afc922..4f841fb5886 100644 --- a/doc/src/sgml/glossary.sgml +++ b/doc/src/sgml/glossary.sgml @@ -199,8 +199,6 @@ (but not the autovacuum workers), the background writer, the checkpointer, - the data checksums worker, - the data checksums worker launcher, the logger, the startup process, the WAL archiver, @@ -236,8 +234,9 @@ which runs system- or user-supplied code. Serves as infrastructure for several features in PostgreSQL, such as - logical replication - and parallel queries. + logical replication, + parallel queries and + data checksums processing. In addition, Extensions can add custom background worker processes. @@ -588,24 +587,17 @@ - - Data Checksums Worker + + Data Checksums (process) - A background worker - which enables data checksums in a specific database. - - - - - - Data Checksums Worker Launcher - - - A background worker - which starts data - checksum worker processes for enabling data checksums in each - database, or disables data checksums cluster-wide. + A set of + background worker + processes which can enable, or disable, data checksums in a + running cluster. The process which coordinates the work is known as the + data checksums worker launcher and the process + which operate on the individual databases is known as the + data checksums worker. -- 2.39.3 (Apple Git-146)