About 7,280,000 results
Open links in new tab
  1. PostgreSQL: Documentation: 18: 19.5. Write Ahead Log

    Nov 13, 2025 · If archive_command is an empty string (the default) while archive_mode is enabled (and archive_library is set to an empty string), WAL archiving is temporarily disabled, …

  2. PostgreSQL Documentation: wal_level parameter

    Level replica is required for binary replication, and level logical is required for logical replication. This is a setting because raising the level adds more writes to the WAL, so if you’re not doing …

  3. wal_level - pgPedia - a PostgreSQL Encyclopedia

    wal_level is a configuration parameter determining the level of detail written to WAL. wal_level was added in PostgreSQL 9.0. The default value for wal_level is: wal_level can only be …

  4. WAL Internals - PostgreSQL 9.2.0 Documentation - durak.org

    WAL is automatically enabled; no action is required from the administrator except ensuring that the disk-space requirements for the WAL logs are met, and that any necessary tuning is done …

  5. wal_level PostgreSQL

    The default value is minimal, which writes only the information needed to recover from a crash or immediate shutdown. archive adds logging required for WAL archiving, and hot_standby …

  6. postgresql.conf compare

    Postgres Parameter across Versions Select a parameter to view the defaults across versions of PostgreSQL.

  7. PostgreSQL: Documentation: 18: 28.5. WAL Configuration

    Nov 13, 2025 · There are several WAL -related configuration parameters that affect database performance. This section explains their use. Consult Chapter 19 for general information about …

  8. In PostgreSQL 9.2, is archiving required for streaming replication?

    If you use streaming replication without file-based continuous archiving, you have to set wal_keep_segments in the master to a value high enough to ensure that old WAL segments …

  9. PostgreSQL: Documentation: 18: 28.3. Write-Ahead Logging (WAL)

    Nov 13, 2025 · Briefly, WAL 's central concept is that changes to data files (where tables and indexes reside) must be written only after those changes have been logged, that is, after WAL …

  10. PostgreSQL: Documentation: 18: 28.6. WAL Internals

    Nov 13, 2025 · WAL is automatically enabled; no action is required from the administrator except ensuring that the disk-space requirements for the WAL files are met, and that any necessary …