Movatterモバイル変換


[0]ホーム

URL:


September 25, 2025: PostgreSQL 18 Released!
DocumentationPostgreSQL devel (2025-10-08 03:44:33 - git commitb71bae41a0c)
Supported Versions:Current (18) /17 /16 /15
Development Versions:devel
This documentation is for an unsupported version of PostgreSQL.
You may want to view the same page for thecurrent version, or one of the other supported versions listed above instead.
F.5. basic_archive — an example WAL archive module
Prev UpAppendix F. Additional Supplied Modules and ExtensionsHome Next

F.5. basic_archive — an example WAL archive module#

basic_archive is an example of an archive module. This module copies completed WAL segment files to the specified directory. This may not be especially useful, but it can serve as a starting point for developing your own archive module. For more information about archive modules, seeChapter 49.

In order to function, this module must be loaded viaarchive_library, andarchive_mode must be enabled.

F.5.1. Configuration Parameters#

basic_archive.archive_directory (string)

The directory where the server should copy WAL segment files. This directory must already exist. The default is an empty string, which effectively halts WAL archiving, but ifarchive_mode is enabled, the server will accumulate WAL segment files in the expectation that a value will soon be provided.

These parameters must be set inpostgresql.conf. Typical usage might be:

# postgresql.confarchive_mode = 'on'archive_library = 'basic_archive'basic_archive.archive_directory = '/path/to/archive/directory'

F.5.2. Notes#

Server crashes may leave temporary files with the prefixarchtemp in the archive directory. It is recommended to delete such files before restarting the server after a crash. It is safe to remove such files while the server is running as long as they are unrelated to any archiving still in progress, but users should use extra caution when doing so.

F.5.3. Author#

Nathan Bossart


Prev Up Next
F.4. basebackup_to_shell — example "shell" pg_basebackup module Home F.6. bloom — bloom filter index access method

[8]ページ先頭

©2009-2025 Movatter.jp