Skip to content
Snippets Groups Projects
Commit 8f900300 authored by Alex Ives's avatar Alex Ives
Browse files

Fix postgresql['dir'] references in geo commands

- Make replication commands respect postgresql['dir']
- Make promote_db commands respect postgresql['dir']
- Remove dependency on data path from version check in
  GitlabCtl::PostgreSQL

Relates to https://gitlab.com/gitlab-org/omnibus-gitlab/issues/3524

Changelog: fixed
parent d5574032
No related branches found
No related tags found
2 merge requests!39Bumped oldstable branch to Heptapod 0.21,!31GitLab 13.10
---
title: 'Fix postgresql[''dir''] references in geo commands'
merge_request: 5061
author:
type: fixed
require 'rainbow/ext/string'
# The first path works on production, while the second path works for tests
begin
require_relative '../../../omnibus-ctl/lib/gitlab_ctl/util'
rescue LoadError
require_relative '../../../gitlab-ctl-commands/lib/gitlab_ctl/util'
end
module Geo
# PromoteDb promotes standby database as usual "pg-ctl promote" but
# if point-in-time LSN file is found, the database will be recovered to that state first
class PromoteDb
PITR_FILE_NAME = 'geo-pitr-file'.freeze
......@@ -3,10 +10,10 @@
module Geo
# PromoteDb promotes standby database as usual "pg-ctl promote" but
# if point-in-time LSN file is found, the database will be recovered to that state first
class PromoteDb
PITR_FILE_NAME = 'geo-pitr-file'.freeze
attr_accessor :base_path, :data_path
attr_accessor :base_path, :postgresql_dir_path
def initialize(ctl)
@base_path = ctl.base_path
......@@ -10,7 +17,7 @@
def initialize(ctl)
@base_path = ctl.base_path
@data_path = ctl.data_path
@postgresql_dir_path = GitlabCtl::Util.get_public_node_attributes.dig('postgresql', 'dir')
end
def execute
......@@ -28,7 +35,7 @@
private
def postgresql_version
@postgresql_version ||= GitlabCtl::PostgreSQL.postgresql_version(data_path)
@postgresql_version ||= GitlabCtl::PostgreSQL.postgresql_version
end
def recovery_to_point_in_time
......@@ -50,7 +57,7 @@
end
def lsn_from_pitr_file
geo_pitr_file = "#{data_path}/postgresql/data/#{PITR_FILE_NAME}"
geo_pitr_file = "#{postgresql_dir_path}/data/#{PITR_FILE_NAME}"
return nil unless File.exist?(geo_pitr_file)
......@@ -81,7 +88,7 @@
end
def write_geo_config_file(settings)
geo_conf_file = "#{data_path}/postgresql/data/gitlab-geo.conf"
geo_conf_file = "#{postgresql_dir_path}/data/gitlab-geo.conf"
File.open(geo_conf_file, "w", 0640) do |file|
file.write(settings)
......@@ -89,7 +96,7 @@
end
def write_recovery_conf(settings)
recovery_conf = "#{data_path}/postgresql/data/recovery.conf"
recovery_conf = "#{postgresql_dir_path}/data/recovery.conf"
File.open(recovery_conf, 'a', 0640) do |file|
file.write(settings)
......
......@@ -10,10 +10,10 @@
module Geo
class Replication
attr_accessor :base_path, :data_path, :tmp_dir, :ctl
attr_accessor :base_path, :data_path, :postgresql_dir_path, :tmp_dir, :ctl
attr_writer :data_dir, :tmp_data_dir
attr_reader :options
def initialize(instance, options)
@base_path = instance.base_path
@data_path = instance.data_path
......@@ -14,9 +14,10 @@
attr_writer :data_dir, :tmp_data_dir
attr_reader :options
def initialize(instance, options)
@base_path = instance.base_path
@data_path = instance.data_path
@postgresql_dir_path = GitlabCtl::Util.get_public_node_attributes.dig('postgresql', 'dir')
@ctl = instance
@options = options
end
......@@ -30,7 +31,7 @@
end
def postgresql_version
@postgresql_version ||= GitlabCtl::PostgreSQL.postgresql_version(data_path)
@postgresql_version ||= GitlabCtl::PostgreSQL.postgresql_version
end
def check_gitlab_active?
......@@ -93,8 +94,8 @@
puts '* Stopping PostgreSQL and all GitLab services'.color(:green)
run_command('gitlab-ctl stop')
@pgpass = "#{data_path}/postgresql/.pgpass"
@pgpass = "#{postgresql_dir_path}/.pgpass"
create_pgpass_file!
check_and_create_replication_slot!
......@@ -97,7 +98,7 @@
create_pgpass_file!
check_and_create_replication_slot!
orig_conf = "#{data_path}/postgresql/data/postgresql.conf"
orig_conf = "#{postgresql_dir_path}/data/postgresql.conf"
if File.exist?(orig_conf)
puts '* Backing up postgresql.conf'.color(:green)
......@@ -102,5 +103,5 @@
if File.exist?(orig_conf)
puts '* Backing up postgresql.conf'.color(:green)
run_command("mv #{orig_conf} #{data_path}/postgresql/")
run_command("mv #{orig_conf} #{postgresql_dir_path}/")
end
......@@ -105,5 +106,5 @@
end
bkp_dir = "#{data_path}/postgresql/data.#{Time.now.to_i}"
bkp_dir = "#{postgresql_dir_path}/data.#{Time.now.to_i}"
puts "* Moving old data directory to '#{bkp_dir}'".color(:green)
......@@ -108,6 +109,6 @@
puts "* Moving old data directory to '#{bkp_dir}'".color(:green)
run_command("mv #{data_path}/postgresql/data #{bkp_dir}")
run_command("mv #{postgresql_dir_path}/data #{bkp_dir}")
puts "* Starting base backup as the replicator user (#{@options[:user]})".color(:green)
......@@ -115,8 +116,8 @@
live: true, timeout: @options[:backup_timeout])
puts '* Restoring postgresql.conf'.color(:green)
run_command("mv #{data_path}/postgresql/postgresql.conf #{data_path}/postgresql/data/")
run_command("mv #{postgresql_dir_path}/postgresql.conf #{postgresql_dir_path}/data/")
write_replication_settings!
puts '* Setting ownership permissions in PostgreSQL data directory'.color(:green)
......@@ -119,8 +120,8 @@
write_replication_settings!
puts '* Setting ownership permissions in PostgreSQL data directory'.color(:green)
run_command("chown -R #{postgresql_user}:#{postgresql_group} #{data_path}/postgresql/data")
run_command("chown -R #{postgresql_user}:#{postgresql_group} #{postgresql_dir_path}/data")
puts '* Starting PostgreSQL and all GitLab services'.color(:green)
run_command('gitlab-ctl start')
......@@ -168,7 +169,7 @@
end
def write_recovery_settings!
geo_conf_file = "#{data_path}/postgresql/data/gitlab-geo.conf"
geo_conf_file = "#{postgresql_dir_path}/data/gitlab-geo.conf"
File.open(geo_conf_file, "w", 0640) do |file|
settings = <<~EOF
# - Added by GitLab Omnibus for Geo replication -
......@@ -182,9 +183,9 @@
end
def create_standby_file!
standby_file = "#{data_path}/postgresql/data/standby.signal"
standby_file = "#{postgresql_dir_path}/data/standby.signal"
File.write(standby_file, "")
run_command("chown #{postgresql_user}:#{postgresql_group} #{standby_file}")
end
def create_recovery_file!
......@@ -186,9 +187,9 @@
File.write(standby_file, "")
run_command("chown #{postgresql_user}:#{postgresql_group} #{standby_file}")
end
def create_recovery_file!
recovery_file = "#{data_path}/postgresql/data/recovery.conf"
recovery_file = "#{postgresql_dir_path}/data/recovery.conf"
File.open(recovery_file, 'w', 0640) do |file|
file.write(<<~EOF
standby_mode = 'on'
......@@ -227,7 +228,7 @@
PGPASSFILE=#{@pgpass} #{@base_path}/embedded/bin/pg_basebackup
-h #{@options[:host]}
-p #{@options[:port]}
-D #{@data_path}/postgresql/data
-D #{@postgresql_dir_path}/data
-U #{@options[:user]}
-v
-P
......
......@@ -36,8 +36,10 @@
node_attributes.dig('postgresql', 'group')
end
def postgresql_version(data_path)
version_file = "#{data_path}/postgresql/data/PG_VERSION"
def postgresql_version
node_attributes = GitlabCtl::Util.get_node_attributes
postgresql_dir_path = node_attributes.dig('postgresql', 'dir')
version_file = "#{postgresql_dir_path}/data/PG_VERSION"
return nil unless File.exist?(version_file)
......
......@@ -3,7 +3,7 @@
require 'gitlab_ctl/util'
RSpec.describe Geo::PromoteDb, '#execute' do
let(:instance) { double(base_path: '/opt/gitlab/embedded', data_path: '/var/opt/gitlab/postgresql/data') }
let(:instance) { double(base_path: '/opt/gitlab/embedded') }
subject(:command) { described_class.new(instance) }
......@@ -24,6 +24,15 @@
end
end
context 'postgres dir is in non-default location' do
it 'uses the specified postgres directory when writing ' do
expected_dir = '/non/default/location'
allow(GitlabCtl::Util).to receive(:get_public_node_attributes).and_return({ 'postgresql' => { 'dir' => expected_dir } })
expect(described_class.new(instance).postgresql_dir_path).to eq(expected_dir)
end
end
context 'when PITR file exists' do
let(:lsn) { '16/B374D848' }
......
......@@ -8,7 +8,7 @@
RSpec.describe Geo::Replication, '#execute' do
let(:command) { spy('command spy', error?: false) }
let(:instance) { double(base_path: '/opt/gitlab/embedded', data_path: '/var/opt/gitlab/postgresql/data') }
let(:instance) { double(base_path: '/opt/gitlab/embedded', data_path: '/var/opt/gitlab') }
let(:file) { spy('file spy') }
let(:options) do
{
......@@ -26,6 +26,8 @@
subject { described_class.new(instance, options) }
before do
allow(GitlabCtl::Util).to receive(:get_public_node_attributes).and_return({ 'postgresql' => { 'dir' => '/var/opt/gitlab/postgresql' } })
allow(instance).to receive(:service_enabled?).and_return(true)
allow(STDOUT).to receive(:puts)
allow(subject).to receive(:print)
......@@ -53,6 +55,13 @@
subject.execute
end
it 'uses the supplied postgres directory' do
expected_dir = '/non/default/location'
allow(GitlabCtl::Util).to receive(:get_public_node_attributes).and_return({ 'postgresql' => { 'dir' => expected_dir } })
expect(described_class.new(instance, options).postgresql_dir_path).to eq(expected_dir)
end
it 'creates a recovery file' do
allow(subject).to receive(:ask_pass).and_return('password')
expect(subject).to receive(:create_recovery_file!)
......@@ -98,7 +107,7 @@
context 'with a custom port' do
let(:options) { { now: true, skip_backup: true, host: 'localhost', port: 9999, user: 'my-user', slot_name: 'foo', db_name: 'gitlab_db_name' } }
let(:cmd) { %q(PGPASSFILE=/var/opt/gitlab/postgresql/data/postgresql/.pgpass /opt/gitlab/embedded/bin/gitlab-psql -h localhost -p 9999 -U my-user -d gitlab_db_name -t -c "SELECT slot_name FROM pg_create_physical_replication_slot('foo');") }
let(:cmd) { %q(PGPASSFILE=/var/opt/gitlab/postgresql/.pgpass /opt/gitlab/embedded/bin/gitlab-psql -h localhost -p 9999 -U my-user -d gitlab_db_name -t -c "SELECT slot_name FROM pg_create_physical_replication_slot('foo');") }
let(:status) { double(error?: false, stdout: '') }
it 'executes a gitlab-psql call to check replication slots' do
......@@ -119,7 +128,7 @@
allow(subject).to receive(:ask_pass).and_return('mypass')
expect(STDIN).to receive(:gets).and_return('replicate')
expect(GitlabCtl::Util).to receive(:run_command)
.with("PGPASSFILE=/var/opt/gitlab/postgresql/data/postgresql/.pgpass /opt/gitlab/embedded/embedded/bin/pg_basebackup -h localhost -p 9999 -D /var/opt/gitlab/postgresql/data/postgresql/data -U my-user -v -P -X stream -S foo",
.with("PGPASSFILE=/var/opt/gitlab/postgresql/.pgpass /opt/gitlab/embedded/embedded/bin/pg_basebackup -h localhost -p 9999 -D /var/opt/gitlab/postgresql/data -U my-user -v -P -X stream -S foo",
anything)
subject.execute
......
......@@ -37,6 +37,16 @@
end
describe '#postgresql_version' do
before do
allow(GitlabCtl::Util).to receive(:get_node_attributes).and_return(
{
'postgresql' => {
'dir' => '/var/opt/gitlab'
}
}
)
end
context 'when PG_VERSION file exists' do
before do
allow(File).to receive(:exist?).and_return(true)
......@@ -44,7 +54,7 @@
end
it 'returns the version' do
expect(described_class.postgresql_version('/var/opt/gitlab')).to eq(12)
expect(described_class.postgresql_version).to eq(12)
end
end
......@@ -54,7 +64,7 @@
end
it 'returns nil' do
expect(described_class.postgresql_version('/var/opt/gitlab')).to be_nil
expect(described_class.postgresql_version).to be_nil
end
end
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment