debian-mirror-gitlab/doc/update/upgrading_postgresql_using_slony.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

481 lines
17 KiB
Markdown
Raw Normal View History

2021-01-29 00:20:46 +05:30
---
2022-07-23 23:45:48 +05:30
stage: Data Stores
2021-03-08 18:12:59 +05:30
group: Database
2021-02-22 17:27:13 +05:30
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
2021-01-29 00:20:46 +05:30
---
2021-06-08 01:23:25 +05:30
# Upgrading PostgreSQL Using Slony **(FREE SELF)**
2017-08-17 22:00:37 +05:30
This guide describes the steps one can take to upgrade their PostgreSQL database
to the latest version without the need for hours of downtime. This guide assumes
you have two database servers: one database server running an older version of
2021-10-27 15:23:28 +05:30
PostgreSQL (for example, 9.2.18) and one server running a newer version (for example, 9.6.0).
2017-08-17 22:00:37 +05:30
2021-10-27 15:23:28 +05:30
For this process, a PostgreSQL replication tool called
[Slony](https://www.slony.info/) is used. Slony allows replication between different
2017-08-17 22:00:37 +05:30
PostgreSQL versions and as such can be used to upgrade a cluster with a minimal
amount of downtime.
2021-10-27 15:23:28 +05:30
This guide often refers to the user `gitlab-psql`, which is the
user used to run the various PostgreSQL OS processes. If you are using a
different user (for example, `postgres`), replace `gitlab-psql` with the name
2017-08-17 22:00:37 +05:30
of said user. This guide also assumes your database is called
`gitlabhq_production`. If you happen to use a different database name you should
change this accordingly.
## Database Dumps
2021-10-27 15:23:28 +05:30
Slony only replicates data and not any schema changes. As a result you must
2017-08-17 22:00:37 +05:30
ensure that all databases have the same database structure.
2021-02-22 17:27:13 +05:30
To do so, generate a dump of the current database. This dump only
contains the structure, not any data. To generate this dump run the following
2017-08-17 22:00:37 +05:30
command on your active database server:
2020-03-13 15:44:24 +05:30
```shell
2017-08-17 22:00:37 +05:30
sudo -u gitlab-psql /opt/gitlab/embedded/bin/pg_dump -h /var/opt/gitlab/postgresql -p 5432 -U gitlab-psql -s -f /tmp/structure.sql gitlabhq_production
```
2021-02-22 17:27:13 +05:30
If you're not using the Omnibus GitLab package you may have to adjust the paths to
2017-08-17 22:00:37 +05:30
`pg_dump` and the PostgreSQL installation directory to match the paths of your
configuration.
2021-10-27 15:23:28 +05:30
After the structure dump is generated, generate another dump for the
2017-08-17 22:00:37 +05:30
`schema_migrations` table. This table doesn't have any primary keys and as such
2021-10-27 15:23:28 +05:30
can't be replicated by Slony. To generate a dump of the `schema_migrations` table, run the following command on your active database server:
2017-08-17 22:00:37 +05:30
2020-03-13 15:44:24 +05:30
```shell
2017-08-17 22:00:37 +05:30
sudo -u gitlab-psql /opt/gitlab/embedded/bin/pg_dump -h /var/opt/gitlab/postgresql/ -p 5432 -U gitlab-psql -a -t schema_migrations -f /tmp/migrations.sql gitlabhq_production
```
2021-02-22 17:27:13 +05:30
Next, move these files somewhere accessible by the new database
server. The easiest way is to download these files to your local system:
2017-08-17 22:00:37 +05:30
2020-03-13 15:44:24 +05:30
```shell
2017-08-17 22:00:37 +05:30
scp your-user@production-database-host:/tmp/*.sql /tmp
```
2021-02-22 17:27:13 +05:30
This copies all the SQL files located in `/tmp` to your local system's
2017-08-17 22:00:37 +05:30
`/tmp` directory. Once copied you can safely remove the files from the database
server.
## Installing Slony
2021-02-22 17:27:13 +05:30
Use Slony to upgrade the database without requiring a long downtime.
2020-04-22 19:07:51 +05:30
Slony can be downloaded from <https://www.slony.info/>. If you have installed
2017-08-17 22:00:37 +05:30
PostgreSQL using your operating system's package manager you may also be able to
install Slony using said package manager.
When compiling Slony from source you *must* use the following commands to do so:
2020-03-13 15:44:24 +05:30
```shell
2017-08-17 22:00:37 +05:30
./configure --prefix=/path/to/installation/directory --with-perltools --with-pgconfigdir=/path/to/directory/containing/pg_config/bin
make
make install
```
Omnibus users can use the following commands:
2020-03-13 15:44:24 +05:30
```shell
2017-08-17 22:00:37 +05:30
./configure --prefix=/opt/gitlab/embedded --with-perltools --with-pgconfigdir=/opt/gitlab/embedded/bin
make
make install
```
2019-12-04 20:38:33 +05:30
This assumes you have installed GitLab into `/opt/gitlab`.
2017-08-17 22:00:37 +05:30
To test if Slony is installed properly, run the following commands:
2020-03-13 15:44:24 +05:30
```shell
2017-08-17 22:00:37 +05:30
test -f /opt/gitlab/embedded/bin/slonik && echo 'Slony installed' || echo 'Slony not installed'
test -f /opt/gitlab/embedded/bin/slonik_init_cluster && echo 'Slony Perl tools are available' || echo 'Slony Perl tools are not available'
/opt/gitlab/embedded/bin/slonik -v
```
This assumes Slony was installed to `/opt/gitlab/embedded`. If Slony was
2021-02-22 17:27:13 +05:30
installed properly the output of these commands is (the mentioned `slonik`
2017-08-17 22:00:37 +05:30
version may be different):
2020-03-13 15:44:24 +05:30
```plaintext
2017-08-17 22:00:37 +05:30
Slony installed
Slony Perl tools are available
slonik version 2.2.5
```
## Slony User
2021-10-27 15:23:28 +05:30
Next, set up a PostgreSQL user that Slony can use to replicate your
2021-02-22 17:27:13 +05:30
database. To do so, sign in to your production database using `psql` using a
super-user account. After signing in, run the following SQL queries:
2017-08-17 22:00:37 +05:30
```sql
CREATE ROLE slony WITH SUPERUSER LOGIN REPLICATION ENCRYPTED PASSWORD 'password string here';
ALTER ROLE slony SET statement_timeout TO 0;
```
2022-01-26 12:08:38 +05:30
Make sure you replace "password string here" with an actual password for the
2021-02-22 17:27:13 +05:30
user. A password is required. This user must be created on both the old and
2017-08-17 22:00:37 +05:30
new database server using the same password.
2021-02-22 17:27:13 +05:30
After creating the user, be sure to note the password, as the password is needed
later.
2017-08-17 22:00:37 +05:30
## Configuring Slony
2021-10-27 15:23:28 +05:30
You can now start configuring Slony. Slony uses a configuration file for
most of the work so it is important to set this up with care. Your configuration
2017-08-17 22:00:37 +05:30
specifies where to put log files, how Slony should connect to the databases,
etc.
2021-02-22 17:27:13 +05:30
First, create some required directories and set the correct
2017-08-17 22:00:37 +05:30
permissions. To do so, run the following commands on both the old and new
database server:
2020-03-13 15:44:24 +05:30
```shell
2017-08-17 22:00:37 +05:30
sudo mkdir -p /var/log/gitlab/slony /var/run/slony1 /var/opt/gitlab/postgresql/slony
sudo chown gitlab-psql:root /var/log/gitlab/slony /var/run/slony1 /var/opt/gitlab/postgresql/slony
```
Here `gitlab-psql` is the user used to run the PostgreSQL database processes. If
2021-10-27 15:23:28 +05:30
you are using a different user you should replace this with the name of said
2017-08-17 22:00:37 +05:30
user.
2021-10-27 15:23:28 +05:30
Now that the directories are in place you can create the configuration file
by using the following template:
2017-08-17 22:00:37 +05:30
```perl
if ($ENV{"SLONYNODES"}) {
require $ENV{"SLONYNODES"};
} else {
$CLUSTER_NAME = 'slony_replication';
$LOGDIR = '/var/log/gitlab/slony';
$MASTERNODE = 1;
$DEBUGLEVEL = 2;
add_node(host => 'OLD_HOST', dbname => 'gitlabhq_production', port =>5432,
user=>'slony', password=>'SLONY_PASSWORD', node=>1);
add_node(host => 'NEW_HOST', dbname => 'gitlabhq_production', port =>5432,
user=>'slony', password=>'SLONY_PASSWORD', node=>2, parent=>1 );
}
$SLONY_SETS = {
"set1" => {
"set_id" => 1,
"table_id" => 1,
"sequence_id" => 1,
"pkeyedtables" => [
TABLES
],
},
};
if ($ENV{"SLONYSET"}) {
require $ENV{"SLONYSET"};
}
# Please do not add or change anything below this point.
1;
```
2021-10-27 15:23:28 +05:30
Replace the following placeholders in this file to use it:
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
- `OLD_HOST`: the address of the old database server.
- `NEW_HOST`: the address of the new database server.
- `SLONY_PASSWORD`: the password of the Slony user created earlier.
- `TABLES`: the tables to replicate.
2017-08-17 22:00:37 +05:30
2021-10-27 15:23:28 +05:30
Generate the list of tables to replicate by running the following
2017-08-17 22:00:37 +05:30
command on your old PostgreSQL database:
2020-03-13 15:44:24 +05:30
```shell
2017-08-17 22:00:37 +05:30
sudo gitlab-psql gitlabhq_production -c "select concat('\"', schemaname, '.', tablename, '\",') from pg_catalog.pg_tables where schemaname = 'public' and tableowner = 'gitlab' and tablename != 'schema_migrations' order by tablename asc;" -t
```
If you're not using Omnibus you should replace `gitlab-psql` with the
appropriate path to the `psql` executable.
The above command outputs a list of tables in a format that can be copy-pasted
directly into the above configuration file. Make sure to _replace_ `TABLES` with
2021-02-22 17:27:13 +05:30
this output, don't just append it below it. The result looks like this:
2017-08-17 22:00:37 +05:30
```perl
"pkeyedtables" => [
"public.abuse_reports",
"public.appearances",
"public.application_settings",
... more rows here ...
]
```
2021-03-11 19:13:27 +05:30
After you have the configuration file generated you must install it on both the
2017-08-17 22:00:37 +05:30
old and new database. To do so, place it in
2021-10-27 15:23:28 +05:30
`/var/opt/gitlab/postgresql/slony/slon_tools.conf` (for which you created the
2017-08-17 22:00:37 +05:30
directory earlier on).
2021-10-27 15:23:28 +05:30
Now that the configuration file is in place, you can _finally_ start replicating
the database. First, set up the schema in the new database by making
sure that the SQL files generated earlier are in the `/tmp`
2021-03-11 19:13:27 +05:30
directory of the new server. After these files are in place start a `psql`
2017-08-17 22:00:37 +05:30
session on this server:
2020-03-13 15:44:24 +05:30
```shell
2017-08-17 22:00:37 +05:30
sudo gitlab-psql gitlabhq_production
```
Now run the following commands:
2020-03-13 15:44:24 +05:30
```plaintext
2017-08-17 22:00:37 +05:30
\i /tmp/structure.sql
\i /tmp/migrations.sql
```
2022-01-26 12:08:38 +05:30
To verify if the structure is in place close the session (`\q`), start it again, then
2017-08-17 22:00:37 +05:30
run `\d`. If all went well you should see output along the lines of the
following:
2020-03-13 15:44:24 +05:30
```plaintext
2017-08-17 22:00:37 +05:30
List of relations
Schema | Name | Type | Owner
--------+---------------------------------------------+----------+-------------
public | abuse_reports | table | gitlab
public | abuse_reports_id_seq | sequence | gitlab
public | appearances | table | gitlab
public | appearances_id_seq | sequence | gitlab
public | application_settings | table | gitlab
public | application_settings_id_seq | sequence | gitlab
public | approvals | table | gitlab
... more rows here ...
```
2021-10-27 15:23:28 +05:30
Now you can initialize the required tables and other processes for
the replication process. To do so, run the following on the old database:
2017-08-17 22:00:37 +05:30
2020-03-13 15:44:24 +05:30
```shell
2017-08-17 22:00:37 +05:30
sudo -u gitlab-psql /opt/gitlab/embedded/bin/slonik_init_cluster --conf /var/opt/gitlab/postgresql/slony/slon_tools.conf | /opt/gitlab/embedded/bin/slonik
```
2021-02-22 17:27:13 +05:30
If all went well this produces something along the lines of:
2017-08-17 22:00:37 +05:30
2020-03-13 15:44:24 +05:30
```plaintext
2017-08-17 22:00:37 +05:30
<stdin>:10: Set up replication nodes
<stdin>:13: Next: configure paths for each node/origin
<stdin>:16: Replication nodes prepared
<stdin>:17: Please start a slon replication daemon for each node
```
2021-10-27 15:23:28 +05:30
Next, start a replication node on every server. To do so, run the
2017-08-17 22:00:37 +05:30
following on the old database:
2020-03-13 15:44:24 +05:30
```shell
2017-08-17 22:00:37 +05:30
sudo -u gitlab-psql /opt/gitlab/embedded/bin/slon_start 1 --conf /var/opt/gitlab/postgresql/slony/slon_tools.conf
```
2021-10-27 15:23:28 +05:30
This should produce an output like the following:
2017-08-17 22:00:37 +05:30
2020-03-13 15:44:24 +05:30
```plaintext
2017-08-17 22:00:37 +05:30
Invoke slon for node 1 - /opt/gitlab/embedded/bin/slon -p /var/run/slony1/slony_replication_node1.pid -s 1000 -d2 slony_replication 'host=192.168.0.7 dbname=gitlabhq_production user=slony port=5432 password=hieng8ezohHuCeiqu0leeghai4aeyahp' > /var/log/gitlab/slony/node1/gitlabhq_production-2016-10-06.log 2>&1 &
Slon successfully started for cluster slony_replication, node node1
PID [26740]
Start the watchdog process as well...
```
2021-10-27 15:23:28 +05:30
Next, run the following command on the _new_ database server:
2017-08-17 22:00:37 +05:30
2020-03-13 15:44:24 +05:30
```shell
2017-08-17 22:00:37 +05:30
sudo -u gitlab-psql /opt/gitlab/embedded/bin/slon_start 2 --conf /var/opt/gitlab/postgresql/slony/slon_tools.conf
```
2021-02-22 17:27:13 +05:30
This produces similar output if all went well.
2017-08-17 22:00:37 +05:30
2021-10-27 15:23:28 +05:30
After Slony starts, you must tell the new database server what it should replicate. Run the following command on the _new_ database server:
2017-08-17 22:00:37 +05:30
2020-03-13 15:44:24 +05:30
```shell
2017-08-17 22:00:37 +05:30
sudo -u gitlab-psql /opt/gitlab/embedded/bin/slonik_create_set 1 --conf /var/opt/gitlab/postgresql/slony/slon_tools.conf | /opt/gitlab/embedded/bin/slonik
```
2021-10-27 15:23:28 +05:30
This should produce an output like the following:
2017-08-17 22:00:37 +05:30
2020-03-13 15:44:24 +05:30
```plaintext
2017-08-17 22:00:37 +05:30
<stdin>:11: Subscription set 1 (set1) created
<stdin>:12: Adding tables to the subscription set
<stdin>:16: Add primary keyed table public.abuse_reports
<stdin>:20: Add primary keyed table public.appearances
<stdin>:24: Add primary keyed table public.application_settings
... more rows here ...
<stdin>:327: Adding sequences to the subscription set
<stdin>:328: All tables added
```
2021-10-27 15:23:28 +05:30
Finally, you can start the replication process by running the following on the
2017-08-17 22:00:37 +05:30
_new_ database server:
2020-03-13 15:44:24 +05:30
```shell
2017-08-17 22:00:37 +05:30
sudo -u gitlab-psql /opt/gitlab/embedded/bin/slonik_subscribe_set 1 2 --conf /var/opt/gitlab/postgresql/slony/slon_tools.conf | /opt/gitlab/embedded/bin/slonik
```
This should produce the following output:
2020-03-13 15:44:24 +05:30
```plaintext
2017-08-17 22:00:37 +05:30
<stdin>:6: Subscribed nodes to set 1
```
2021-02-22 17:27:13 +05:30
At this point the new database server starts replicating the data of the old
2017-08-17 22:00:37 +05:30
database server. This process can take anywhere from a few minutes to hours, if
not days. Unfortunately Slony itself doesn't really provide a way of knowing
when the two databases are in sync. To get an estimate of the progress you can
use the following shell script:
2020-03-13 15:44:24 +05:30
```shell
2017-08-17 22:00:37 +05:30
#!/usr/bin/env bash
set -e
user='slony'
pass='SLONY_PASSWORD'
function main {
while :
do
local source
local target
source=$(PGUSER="${user}" PGPASSWORD="${pass}" /opt/gitlab/embedded/bin/psql -h OLD_HOST gitlabhq_production -c "select pg_size_pretty(pg_database_size('gitlabhq_production'));" -t -A)
target=$(PGUSER="${user}" PGPASSWORD="${pass}" /opt/gitlab/embedded/bin/psql -h NEW_HOST gitlabhq_production -c "select pg_size_pretty(pg_database_size('gitlabhq_production'));" -t -A)
echo "$(date): ${target} of ${source}" >> progress.log
echo "$(date): ${target} of ${source}"
sleep 60
done
}
main
```
2021-02-22 17:27:13 +05:30
This script compares the sizes of the old and new database every minute and
2021-10-27 15:23:28 +05:30
prints the results to STDOUT as well as logging it to a file. Make sure to replace
2017-08-17 22:00:37 +05:30
`SLONY_PASSWORD`, `OLD_HOST`, and `NEW_HOST` with the correct values.
## Stopping Replication
2021-10-27 15:23:28 +05:30
Eventually, the two databases become in sync. At this point, there is a few minutes of downtime that you must plan for before the replicated database is available. During this time, the replication process should stop and all Slony data should be removed from both databases. After the replication process finishes, GitLab can restart and is able to use the newly-replicated database.
2017-08-17 22:00:37 +05:30
2021-10-27 15:23:28 +05:30
First, stop all of GitLab. Omnibus users can do so by running the
2021-02-22 17:27:13 +05:30
following on their GitLab servers:
2017-08-17 22:00:37 +05:30
2020-03-13 15:44:24 +05:30
```shell
2021-09-04 01:27:46 +05:30
sudo gitlab-ctl stop puma
2017-08-17 22:00:37 +05:30
sudo gitlab-ctl stop sidekiq
sudo gitlab-ctl stop mailroom
```
2021-02-22 17:27:13 +05:30
If you have any other processes that use PostgreSQL, you should also stop those.
2017-08-17 22:00:37 +05:30
2021-10-27 15:23:28 +05:30
After everything successfully stops, be sure to update any configuration settings
2021-02-22 17:27:13 +05:30
and DNS records so they all point to the new database.
2017-08-17 22:00:37 +05:30
2021-10-27 15:23:28 +05:30
When the configuration is complete, stop the replication
2021-02-22 17:27:13 +05:30
process. It's crucial that no new data is written to the databases at this point,
as this data is discarded.
2017-08-17 22:00:37 +05:30
To stop replication, run the following on both database servers:
2020-03-13 15:44:24 +05:30
```shell
2017-08-17 22:00:37 +05:30
sudo -u gitlab-psql /opt/gitlab/embedded/bin/slon_kill --conf /var/opt/gitlab/postgresql/slony/slon_tools.conf
```
2021-02-22 17:27:13 +05:30
This stops all the Slony processes on the host the command was executed on.
2017-08-17 22:00:37 +05:30
## Resetting Sequences
The above setup does not replicate database sequences, as such these must be
reset manually in the target database. You can use the following script for
this:
2020-03-13 15:44:24 +05:30
```shell
2017-08-17 22:00:37 +05:30
#!/usr/bin/env bash
set -e
function main {
local fix_sequences
local fix_owners
fix_sequences='/tmp/fix_sequences.sql'
fix_owners='/tmp/fix_owners.sql'
# The SQL queries were taken from
# https://wiki.postgresql.org/wiki/Fixing_Sequences
sudo gitlab-psql gitlabhq_production -t -c "
SELECT 'ALTER SEQUENCE '|| quote_ident(MIN(schema_name)) ||'.'|| quote_ident(MIN(seq_name))
||' OWNED BY '|| quote_ident(MIN(TABLE_NAME)) ||'.'|| quote_ident(MIN(column_name)) ||';'
FROM (
SELECT
n.nspname AS schema_name,
c.relname AS TABLE_NAME,
a.attname AS column_name,
SUBSTRING(d.adsrc FROM E'^nextval\\(''([^'']*)''(?:::text|::regclass)?\\)') AS seq_name
FROM pg_class c
JOIN pg_attribute a ON (c.oid=a.attrelid)
JOIN pg_attrdef d ON (a.attrelid=d.adrelid AND a.attnum=d.adnum)
JOIN pg_namespace n ON (c.relnamespace=n.oid)
WHERE has_schema_privilege(n.oid,'USAGE')
AND n.nspname NOT LIKE 'pg!_%' escape '!'
AND has_table_privilege(c.oid,'SELECT')
AND (NOT a.attisdropped)
AND d.adsrc ~ '^nextval'
) seq
GROUP BY seq_name HAVING COUNT(*)=1;
" > "${fix_owners}"
sudo gitlab-psql gitlabhq_production -t -c "
SELECT 'SELECT SETVAL(' ||
quote_literal(quote_ident(PGT.schemaname) || '.' || quote_ident(S.relname)) ||
', COALESCE(MAX(' ||quote_ident(C.attname)|| '), 1) ) FROM ' ||
quote_ident(PGT.schemaname)|| '.'||quote_ident(T.relname)|| ';'
FROM pg_class AS S,
pg_depend AS D,
pg_class AS T,
pg_attribute AS C,
pg_tables AS PGT
WHERE S.relkind = 'S'
AND S.oid = D.objid
AND D.refobjid = T.oid
AND D.refobjid = C.attrelid
AND D.refobjsubid = C.attnum
AND T.relname = PGT.tablename
ORDER BY S.relname;
" > "${fix_sequences}"
sudo gitlab-psql gitlabhq_production -f "${fix_owners}"
sudo gitlab-psql gitlabhq_production -f "${fix_sequences}"
rm "${fix_owners}" "${fix_sequences}"
}
main
```
Upload this script to the _target_ server and execute it as follows:
2020-03-13 15:44:24 +05:30
```shell
2022-01-26 12:08:38 +05:30
sudo bash path/to/the/script/above.sh
2017-08-17 22:00:37 +05:30
```
2021-02-22 17:27:13 +05:30
This corrects the ownership of sequences and reset the next value for the
2017-08-17 22:00:37 +05:30
`id` column to the next available value.
## Removing Slony
2021-10-27 15:23:28 +05:30
The final step is to remove all Slony related data. To do so, run the following
2017-08-17 22:00:37 +05:30
command on the _target_ server:
2020-03-13 15:44:24 +05:30
```shell
2017-08-17 22:00:37 +05:30
sudo gitlab-psql gitlabhq_production -c "DROP SCHEMA _slony_replication CASCADE;"
```
2021-10-27 15:23:28 +05:30
Once done you can safely remove any Slony related files (for example, the log
2017-08-17 22:00:37 +05:30
directory), and uninstall Slony if desired. At this point you can start your
GitLab instance again and if all went well it should be using your new database
server.