diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index 7ed8c82a9d..4fd36fa53a 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -2775,6 +2775,10 @@ include_dir 'conf.d' minimal makes any base backups taken before unavailable for archive recovery and standby server, which may lead to data loss. + A precondition for using minimal WAL is to disable WAL archiving and + streaming replication by setting + to 0, and archive_mode + to off. In logical level, the same information is logged as @@ -3535,6 +3539,7 @@ include_dir 'conf.d' mode. In always mode, all files restored from the archive or streamed with streaming replication will be archived (again). See for details. + The default value is off. This parameter can only be set at server start. @@ -4096,7 +4101,9 @@ restore_command = 'copy "C:\\server\\archivedir\\%f" "%p"' # Windows reconnect. This parameter can only be set at server start. Also, wal_level must be set to replica or higher to allow connections from standby - servers. + servers. If setting max_wal_senders to + 0 consider also reducing the amount of WAL produced + by changing wal_level to minimal.