Files
ubicloud/rhizome/postgres/bin/initialize-database-from-backup
Burak Yucesoy 31ef6bf0b9 Update data plane Postgres scripts to accept version as parameter
We used to hardcode 16 as the version, mostly while generating paths. With the
PG17 support, those paths changed to contain 17 instead of 16. Data plane does
not know the installed PostgreSQL version, so it needs that information from
control plane. With this commit we are updating data plane scripts to accept
version parameter from control plane.
2024-10-25 13:44:27 +03:00

38 lines
1.3 KiB
Ruby
Executable File

#!/bin/env ruby
# frozen_string_literal: true
require_relative "../../common/lib/util"
if ARGV.count != 2
fail "Wrong number of arguments. Expected 2, Given #{ARGV.count}"
end
v = ARGV[0]
backup_label = ARGV[1]
r "chown postgres /dat"
# Below commands are required for idempotency
r "rm -rf /dat/#{v}"
r "rm -rf /etc/postgresql/#{v}"
r "sudo -u postgres wal-g backup-fetch /dat/#{v}/data #{backup_label} --config /etc/postgresql/wal-g.env"
# We want to use pg_createcluster, even with an existing database folder because
# pg_createcluster does additonal things like configuring systemd. However, it
# also expect to see .conf files in the data directory, so that it can move them
# to /etc/postgresql/$VERSION/main. Thus we create a bunch of .conf files.
r "sudo -u postgres touch /dat/#{v}/data/pg_ident.conf"
r "sudo -u postgres touch /dat/#{v}/data/pg_hba.conf"
r "sudo -u postgres touch /dat/#{v}/data/postgresql.conf"
# Technically LATEST label can be used for PITR as well, but we use the label
# name from backups in PITR case. So backup_label can be used to decide on
# which signal file to use.
if backup_label == "LATEST"
r "sudo -u postgres touch /dat/#{v}/data/standby.signal"
else
r "sudo -u postgres touch /dat/#{v}/data/recovery.signal"
end
r "pg_createcluster #{v} main"