Skip to content
Snippets Groups Projects
Commit 5d699b99 authored by Balasankar "Balu" C's avatar Balasankar "Balu" C
Browse files

Remove PG 9.6 and 10 configurations

parent 928ca370
No related branches found
No related tags found
No related merge requests found
Showing
with 67 additions and 274 deletions
---
title: Remove PostgreSQL 9.6 and 10
merge_request: 4186
author:
type: removed
diff --git a/Makefile b/Makefile
index cd501cf7..9061cec1 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
#
# Makefile
# Copyright (c) 2ndQuadrant, 2010-2017
-
+MODULE_big = repmgr_funcs
HEADERS = $(wildcard *.h)
repmgrd_OBJS = dbutils.o config.o repmgrd.o log.o strutil.o
diff --git a/modules_big.patch b/modules_big.patch
new file mode 100644
index 00000000..e69de29b
diff --git a/Makefile b/Makefile
index cd501cf7..9061cec1 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
#
# Makefile
# Copyright (c) 2ndQuadrant, 2010-2017
-
+MODULE_big = repmgr_funcs
HEADERS = $(wildcard *.h)
repmgrd_OBJS = dbutils.o config.o repmgrd.o log.o strutil.o
diff --git a/modules_big.patch b/modules_big.patch
new file mode 100644
index 00000000..e69de29b
......@@ -41,5 +41,4 @@
dependency 'curl'
dependency 'rsync'
dependency 'libicu'
dependency 'postgresql_old'
dependency 'postgresql'
......@@ -45,5 +44,4 @@
dependency 'postgresql'
dependency 'postgresql_new'
dependency 'python-docutils'
dependency 'krb5'
dependency 'registry'
......@@ -57,8 +55,6 @@
if EE
dependency 'pgbouncer'
dependency 'repmgr'
dependency 'repmgr_pg_10'
dependency 'repmgr_pg_11'
dependency 'gitlab-elasticsearch-indexer'
end
......
......@@ -16,7 +16,7 @@
#
name 'postgresql'
default_version '10.12'
default_version '11.7'
license 'PostgreSQL'
license_file 'COPYRIGHT'
......@@ -30,7 +30,7 @@
dependency 'libossp-uuid'
dependency 'config_guess'
version '10.12' do
source sha256: '388f7f888c4fbcbdf424ec2bce52535195b426010b720af7bea767e23e594ae7'
version '11.7' do
source sha256: '324ae93a8846fbb6a25d562d271bc441ffa8794654c5b2839384834de220a313'
end
......@@ -35,11 +35,6 @@
end
# PostgreSQL 10 should have a major version of 10, not 10.0.
# See: https://www.postgresql.org/support/versioning
#
# Be sure to update files/gitlab-cookbooks/postgresql/recipes/enable.rb when
# upgrading.
major_version = '10'
major_version = '11'
source url: "https://ftp.postgresql.org/pub/source/v#{version}/postgresql-#{version}.tar.bz2"
......@@ -60,6 +55,12 @@
make "world -j #{workers}", env: env
make 'install-world', env: env
block 'link bin files' do
Dir.glob("#{prefix}/bin/*").each do |bin_file|
link bin_file, "#{install_dir}/embedded/bin/#{File.basename(bin_file)}"
end
end
end
# exclude headers and static libraries from package
......
#
# Copyright 2012-2014 Chef Software, Inc.
# Copyright:: Copyright (c) 2016 GitLab Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
name 'postgresql_new'
default_version '11.7'
license 'PostgreSQL'
license_file 'COPYRIGHT'
skip_transitive_dependency_licensing true
dependency 'zlib'
dependency 'openssl'
dependency 'libedit'
dependency 'ncurses'
dependency 'libossp-uuid'
dependency 'config_guess'
version '11.7' do
source sha256: '324ae93a8846fbb6a25d562d271bc441ffa8794654c5b2839384834de220a313'
end
# PostgreSQL 10 and up should have a major version of 10, not 10.0.
# See: https://www.postgresql.org/support/versioning
major_version = '11'
source url: "https://ftp.postgresql.org/pub/source/v#{version}/postgresql-#{version}.tar.bz2"
relative_path "postgresql-#{version}"
build do
env = with_standard_compiler_flags(with_embedded_path)
prefix = "#{install_dir}/embedded/postgresql/#{major_version}"
update_config_guess(target: 'config')
patch source: 'no_docs.patch', target: 'GNUmakefile.in'
command './configure' \
" --prefix=#{prefix}" \
' --with-libedit-preferred' \
' --with-openssl' \
' --with-ossp-uuid', env: env
make "world -j #{workers}", env: env
make 'install-world', env: env
block 'link bin files' do
Dir.glob("#{prefix}/bin/*").each do |bin_file|
link bin_file, "#{install_dir}/embedded/bin/#{File.basename(bin_file)}"
end
end
end
# exclude headers and static libraries from package
project.exclude "embedded/bin/pg_config"
project.exclude "embedded/postgresql/#{major_version}/include"
project.exclude "embedded/postgresql/#{major_version}/lib/*.a"
project.exclude "embedded/postgresql/#{major_version}/lib/pgxs"
project.exclude "embedded/postgresql/#{major_version}/lib/pkgconfig"
#
# Copyright 2012-2014 Chef Software, Inc.
# Copyright:: Copyright (c) 2016 GitLab Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
name 'postgresql_old'
default_version '9.6.17'
license 'PostgreSQL'
license_file 'COPYRIGHT'
skip_transitive_dependency_licensing true
dependency 'zlib'
dependency 'openssl'
dependency 'libedit'
dependency 'ncurses'
dependency 'libossp-uuid'
dependency 'config_guess'
version '9.6.17' do
source sha256: 'f6e1e32d32545f97c066f3c19f4d58dfab1205c01252cf85c5c92294ace1a0c2'
end
# PostgreSQL 10 should have a major version of 10, not 10.0.
# See: https://www.postgresql.org/support/versioning
#
# Be sure to update files/gitlab-cookbooks/postgresql/recipes/enable.rb when
# upgrading.
major_version = '9.6'
source url: "https://ftp.postgresql.org/pub/source/v#{version}/postgresql-#{version}.tar.bz2"
relative_path "postgresql-#{version}"
build do
env = with_standard_compiler_flags(with_embedded_path)
prefix = "#{install_dir}/embedded/postgresql/#{major_version}"
update_config_guess(target: 'config')
patch source: 'no_docs.patch', target: 'GNUmakefile.in'
command './configure' \
" --prefix=#{prefix}" \
' --with-libedit-preferred' \
' --with-openssl' \
' --with-ossp-uuid', env: env
make "world -j #{workers}", env: env
make 'install-world', env: env
end
# exclude headers and static libraries from package
project.exclude "embedded/bin/pg_config"
project.exclude "embedded/postgresql/#{major_version}/include"
project.exclude "embedded/postgresql/#{major_version}/lib/*.a"
project.exclude "embedded/postgresql/#{major_version}/lib/pgxs"
project.exclude "embedded/postgresql/#{major_version}/lib/pkgconfig"
......@@ -27,9 +27,8 @@
source git: version.remote
dependency 'postgresql_old'
dependency 'postgresql'
env = with_standard_compiler_flags(with_embedded_path)
build do
......@@ -31,9 +30,12 @@
dependency 'postgresql'
env = with_standard_compiler_flags(with_embedded_path)
build do
env['PATH'] = "#{install_dir}/embedded/postgresql/9.6/bin:#{env['PATH']}"
env['PATH'] = "#{install_dir}/embedded/postgresql/11/bin:#{env['PATH']}"
patch source: 'modules_big.patch', env: env
make "-j #{workers} USE_PGXS=1 all", env: env
make "-j #{workers} USE_PGXS=1 install", env: env
end
#
# Copyright:: Copyright (c) 2019 GitLab Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
name 'repmgr_pg_10'
default_version 'v3.3.2'
license 'GPL-3.0'
license_file 'LICENSE'
skip_transitive_dependency_licensing true
source git: "https://github.com/2ndQuadrant/repmgr.git"
dependency 'postgresql'
env = with_standard_compiler_flags(with_embedded_path)
build do
env['PATH'] = "#{install_dir}/embedded/postgresql/10/bin:#{env['PATH']}"
make "-j #{workers} USE_PGXS=1 all", env: env
make "-j #{workers} USE_PGXS=1 install", env: env
block 'link bin files' do
psql_bins = File.dirname(File.realpath(embedded_bin('psql')))
link File.join(psql_bins, 'repmgr*'), "#{install_dir}/embedded/bin/"
end
end
#
# Copyright:: Copyright (c) 2019 GitLab Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
name 'repmgr_pg_11'
default_version 'v3.3.2'
license 'GPL-3.0'
license_file 'LICENSE'
skip_transitive_dependency_licensing true
source git: "https://github.com/2ndQuadrant/repmgr.git"
dependency 'postgresql_new'
env = with_standard_compiler_flags(with_embedded_path)
build do
env['PATH'] = "#{install_dir}/embedded/postgresql/11/bin:#{env['PATH']}"
patch source: 'modules_big.patch', env: env
make "-j #{workers} USE_PGXS=1 all", env: env
make "-j #{workers} USE_PGXS=1 install", env: env
end
......@@ -57,7 +57,7 @@
}
pg_check() {
PG_MIN_VERSION=9.6
PG_MIN_VERSION=11
# Fetch the currently running version from the database
# If this doesn't work, assume this isn't a database node
......@@ -75,8 +75,8 @@
# float, so that we can do numerical comparison.
if ! $(echo ${running_version} | awk -v PG_MIN_VERSION="$PG_MIN_VERSION" '$NF+0 < PG_MIN_VERSION {exit 1}'); then
notify
notify "Your version of PostgreSQL is no longer supported. Please upgrade your PostgreSQL version."
notify "Check https://docs.gitlab.com/omnibus/update/#updating-gitlab-10-0-or-newer for details."
notify "Your version of PostgreSQL is no longer supported. Please upgrade your PostgreSQL version to ${PG_MIN_VERSION}."
notify "Check https://docs.gitlab.com/omnibus/settings/database.html#upgrade-packaged-postgresql-server for details."
notify ""
notify "Upgrade failed. Retry the upgrade after upgrading your PostgreSQL version."
exit 1
......
......@@ -9,6 +9,7 @@
| GitLab version | PostgreSQL versions | Default version for fresh installs | Default version for upgrades | Notes |
| -------------- | --------------------- | ---------------------------------- | ---------------------------- | ----- |
| 13.0 | 11.7 | 11.7 | 11.7 | Package upgrades aborted if users not running PG 11 already |
| 12.10 | 9.6.17, 10.12, and 11.7 | 11.7 | 11.7 | Package upgrades automatically performed PostgreSQL upgrade for nodes that are not part of a Geo or repmgr cluster. |
| 12.8 | 9.6.17, 10.12, and 11.7 | 10.12 | 10.12 | Users can manually upgrade to 11.7 following the upgrade docs. |
| 12.0 | 9.6.11 and 10.7 | 10.7 | 10.7 | Package upgrades automatically performed PostgreSQL upgrade. |
......
......@@ -10,3 +10,10 @@
installations as well as upgrades, unless [users have explicitly disabled Puma
and enabled Unicorn](../settings/unicorn.md#enabling-unicorn). Users who have
Unicorn configuration are recommended to refer to [the docs on how to convert them to Puma ones](../settings/puma.md#converting-unicorn-settings-to-puma).
## PostgreSQL 11 becoming minimum required version
To upgrade to GitLab 13.0 or later, users must be already running PostgreSQL 11.
PostgreSQL 9.6 and 10 [have been removed from](https://gitlab.com/gitlab-org/omnibus-gitlab/-/merge_requests/4186)
the package. Follow [the documentation](../settings/database.md#upgrade-packaged-postgresql-server)
on how to upgrade the packaged PostgreSQL server to required version.
......@@ -482,7 +482,7 @@
end
def older_version
PGVersion.parse(version_from_manifest('postgresql_old'))
PGVersion.parse(version_from_manifest('postgresql_old')) || PGVersion.parse(version_from_manifest('postgresql'))
end
def old_version
......@@ -490,7 +490,7 @@
end
def default_version
PGVersion.parse(version_from_manifest('postgresql_new'))
PGVersion.parse(version_from_manifest('postgresql_new')) || PGVersion.parse(version_from_manifest('postgresql'))
end
SUPPORTED_VERSIONS = [older_version, old_version, default_version].freeze
......
......@@ -58,9 +58,9 @@
if postgresql_upgrade_disabled? || geo_detected? || repmgr_detected?
log ''
log '==='
log 'Skipping automatic PostgreSQL upgrade'
log 'Skipping the check for newer PostgreSQL version and automatic upgrade.'
log "Please see #{pg_upgrade_doc_url}"
log 'for details on how to manually upgrade the PostgreSQL server'
log '==='
log ''
else
......@@ -62,9 +62,9 @@
log "Please see #{pg_upgrade_doc_url}"
log 'for details on how to manually upgrade the PostgreSQL server'
log '==='
log ''
else
unless GitlabCtl::Util.progress_message('Ensuring PostgreSQL is updated') do
unless GitlabCtl::Util.progress_message('Checking if a newer PostgreSQL version is available and attempting automatic upgrade to it') do
command = %W(#{base_path}/bin/gitlab-ctl pg-upgrade -w)
status = run_command(command.join(' '))
status.success?
......@@ -211,6 +211,6 @@
def pg_upgrade_check
return unless postgresql_detected?
pg_version_file = '/var/opt/gitlab/postgresql/data/PG_VERSION'
version = PGVersion.parse(File.read(pg_version_file).strip) if File.exist?(pg_version_file)
manifest_file = '/opt/gitlab/version-manifest.txt'
return unless File.exist?(manifest_file)
......@@ -216,9 +216,13 @@
manifest_file = '/opt/gitlab/version-manifest.txt'
if File.exist?(manifest_file)
manifest_entry = File.readlines(manifest_file).grep(/postgresql_new/).first
new_version = PGVersion.parse(manifest_entry&.split&.[](1))
end
# If postgresql_new doesn't exist, we are shipping only one PG version. This
# check becomes irrelevent then, and we return early.
manifest_entry = File.readlines(manifest_file).grep(/postgresql_new/).first
return unless manifest_entry
new_version = PGVersion.parse(manifest_entry&.split&.[](1))
pg_version_file = '/var/opt/gitlab/postgresql/data/PG_VERSION'
installed_version = PGVersion.parse(File.read(pg_version_file).strip) if File.exist?(pg_version_file)
# Print when upgrade
# - when we have a database and its not already on the new version
......@@ -222,6 +226,6 @@
# Print when upgrade
# - when we have a database and its not already on the new version
outdated_db = version && new_version && new_version.major.to_f > version.major.to_f
outdated_db = installed_version && new_version && new_version.major.to_f > installed_version.major.to_f
return unless outdated_db
......@@ -226,10 +230,10 @@
return unless outdated_db
puts '=== WARNING ==='
puts 'Note that PostgreSQL 11 will become the minimum required PostgreSQL version in GitLab 13.0 (May 2020).'
puts 'PostgreSQL 9.6 and PostgreSQL 10 will be removed in GitLab 13.0.'
puts "To upgrade, please see: https://docs.gitlab.com/omnibus/settings/database.html#upgrade-packaged-postgresql-server"
puts '=== WARNING ==='
puts '=== INFO ==='
puts "You are currently running PostgreSQL #{installed_version}."
puts "GitLab now ships with a newer version of PostgreSQL (#{new_version}) and you are recommended to upgrade to it."
puts 'To upgrade, please see: https://docs.gitlab.com/omnibus/settings/database.html#upgrade-packaged-postgresql-server'
puts '=== INFO ==='
end
def print_welcome_and_exit
......
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