pgsql: Skip WAL recycling and preallocation during archive recovery.

Поиск
Список
Период
Сортировка
От Noah Misch
Тема pgsql: Skip WAL recycling and preallocation during archive recovery.
Дата
Msg-id E1ly2fW-0002b1-3Q@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Skip WAL recycling and preallocation during archive recovery.

The previous commit addressed the chief consequences of a race condition
between InstallXLogFileSegment() and KeepFileRestoredFromArchive().  Fix
three lesser consequences.  A spurious durable_rename_excl() LOG message
remained possible.  KeepFileRestoredFromArchive() wasted the proceeds of
WAL recycling and preallocation.  Finally, XLogFileInitInternal() could
return a descriptor for a file that KeepFileRestoredFromArchive() had
already unlinked.  That felt like a recipe for future bugs.

Discussion: https://postgr.es/m/20210202151416.GB3304930@rfd.leadboat.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/cc2c7d65fc27e877c9f407587b0b92d46cd6dd16

Modified Files
--------------
src/backend/access/transam/xlog.c | 65 ++++++++++++++++++++++++++++++++++-----
1 file changed, 57 insertions(+), 8 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: pgsql: doc: Improve PG14 release notes
Следующее
От: Michael Paquier
Дата:
Сообщение: pgsql: Add support for LZ4 with compression of full-page writes in WAL