WAL (write-ahead log)
RU: WAL (журнал упреждающей записи)
PostgreSQL's sequential on-disk log (stored in pg_wal/) where every change is recorded before the corresponding data pages are written. On crash recovery, PostgreSQL replays the WAL from the last checkpoint to restore a consistent state; WAL also drives streaming replication by shipping log segments to standby servers.