From 66e7fbc6b6bf8296969f09194edfc957b7fc8630 Mon Sep 17 00:00:00 2001 From: Sam Al-Sapti Date: Thu, 28 Dec 2023 00:01:59 +0100 Subject: [PATCH] Disable WAL archiving for now --- roles/postgresql/templates/postgresql.conf.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/postgresql/templates/postgresql.conf.j2 b/roles/postgresql/templates/postgresql.conf.j2 index ceef539..acd4c12 100644 --- a/roles/postgresql/templates/postgresql.conf.j2 +++ b/roles/postgresql/templates/postgresql.conf.j2 @@ -22,5 +22,5 @@ max_wal_size = 2GB min_wal_size = 80MB # Archiving -archive_mode = on +archive_mode = off archive_command = 'test ! -f {{ postgresql_wal_archive }}/%f && cp %p {{ postgresql_wal_archive }}/%f'