When trying to use wal-g with Patroni, I've got the following configuration as the Postgres section of patroni.yml:
postgresql:
use_pg_rewind: true
use_slots: true
parameters:
wal_level: logical
hot_standby: "on"
wal_keep_segments: 8
max_wal_senders: 8
max_replication_slots: 8
checkpoint_timeout: 30
archive_mode: "on"
archive_command: PGUSER=dba PGPASSWORD=xx WALG_FILE_PREFIX=file://localhost/backup-disk/ wal-g wal-push "%p"
recovery_conf:
restore_command: PGUSER=dba PGPASSWORD=xx WALG_FILE_PREFIX=file://localhost/backup-disk/ wal-g wal-fetch "%f" "%p"
However if I then try to create a backup using PGHOST=/var/run/postgresql PGUSER=dba PGPASSWORD=xx envdir /data/conf/wal-e.env wal-g backup-push /data/postgresql/current
, it tries to connect to the dba
database which doesn't exist:
INFO: Doing full backup.
ERROR: Connect: postgres connection failed: FATAL: database "dba" does not exist (SQLSTATE 3D000)
From the wal-g docs and searching, it's not obvious why this is not the case, so in an attempt to make things more discoverable I'm asking the question.