debian-mirror-gitlab/doc/administration/geo/setup/database.md

1009 lines
37 KiB
Markdown
Raw Normal View History

2020-11-24 15:15:51 +05:30
---
stage: Enablement
group: Geo
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
2020-11-24 15:15:51 +05:30
type: howto
---
2021-03-11 19:13:27 +05:30
# Geo database replication **(PREMIUM SELF)**
2020-11-24 15:15:51 +05:30
2021-02-22 17:27:13 +05:30
NOTE:
2020-11-24 15:15:51 +05:30
If your GitLab installation uses external (not managed by Omnibus) PostgreSQL
2021-09-04 01:27:46 +05:30
instances, the Omnibus roles are unable to perform all necessary
2020-11-24 15:15:51 +05:30
configuration steps. In this case,
[follow the Geo with external PostgreSQL instances document instead](external_database.md).
2021-02-22 17:27:13 +05:30
NOTE:
2020-11-24 15:15:51 +05:30
The stages of the setup process must be completed in the documented order.
Before attempting the steps in this stage, [complete all prior stages](../setup/index.md#using-omnibus-gitlab).
2021-01-03 14:25:43 +05:30
This document describes the minimal steps you have to take to replicate your
**primary** GitLab database to a **secondary** node's database. You may have to
change some values, based on attributes including your database's setup and
size.
2020-11-24 15:15:51 +05:30
You are encouraged to first read through all the steps before executing them
in your testing/production environment.
2021-09-04 01:27:46 +05:30
## Single instance database replication
2020-11-24 15:15:51 +05:30
2021-09-04 01:27:46 +05:30
A single instance database replication is easier to set up and still provides the same Geo capabilities
as a clusterized alternative. It's useful for setups running on a single machine
or trying to evaluate Geo for a future clusterized installation.
2021-09-30 23:02:18 +05:30
A single instance can be expanded to a clusterized version using Patroni, which is recommended for a
2021-09-04 01:27:46 +05:30
highly available architecture.
2021-09-30 23:02:18 +05:30
Follow below the instructions on how to set up PostgreSQL replication as a single instance database.
Alternatively, you can look at the [Multi-node database replication](#multi-node-database-replication)
2021-09-04 01:27:46 +05:30
instructions on setting up replication with a Patroni cluster.
### PostgreSQL replication
The GitLab **primary** node where the write operations happen connects to
2021-09-30 23:02:18 +05:30
the **primary** database server, and **secondary** nodes
2020-11-24 15:15:51 +05:30
connect to their own database servers (which are also read-only).
We recommend using [PostgreSQL replication slots](https://medium.com/@tk512/replication-slots-in-postgresql-b4b03d277c75)
to ensure that the **primary** node retains all the data necessary for the **secondary** nodes to
recover. See below for more details.
The following guide assumes that:
2021-09-04 01:27:46 +05:30
- You are using Omnibus and therefore you are using PostgreSQL 12 or later
which includes the [`pg_basebackup` tool](https://www.postgresql.org/docs/12/app-pgbasebackup.html).
2020-11-24 15:15:51 +05:30
- You have a **primary** node already set up (the GitLab server you are
replicating from), running Omnibus' PostgreSQL (or equivalent version), and
you have a new **secondary** server set up with the same versions of the OS,
PostgreSQL, and GitLab on all nodes.
2021-02-22 17:27:13 +05:30
WARNING:
2020-11-24 15:15:51 +05:30
Geo works with streaming replication. Logical replication is not supported at this time.
There is an [issue where support is being discussed](https://gitlab.com/gitlab-org/gitlab/-/issues/7420).
2021-09-04 01:27:46 +05:30
#### Step 1. Configure the **primary** server
2020-11-24 15:15:51 +05:30
1. SSH into your GitLab **primary** server and login as root:
```shell
sudo -i
```
2021-10-27 15:23:28 +05:30
1. Edit `/etc/gitlab/gitlab.rb` and add a **unique** name for your site:
2020-11-24 15:15:51 +05:30
```ruby
2021-10-27 15:23:28 +05:30
##
## The unique identifier for the Geo site. See
## https://docs.gitlab.com/ee/user/admin_area/geo_nodes.html#common-settings
##
gitlab_rails['geo_node_name'] = '<site_name_here>'
2020-11-24 15:15:51 +05:30
```
1. Reconfigure the **primary** node for the change to take effect:
```shell
gitlab-ctl reconfigure
```
1. Execute the command below to define the node as **primary** node:
```shell
gitlab-ctl set-geo-primary-node
```
2021-09-04 01:27:46 +05:30
This command uses your defined `external_url` in `/etc/gitlab/gitlab.rb`.
2020-11-24 15:15:51 +05:30
2021-09-04 01:27:46 +05:30
1. Define a password for the `gitlab` database user:
2020-11-24 15:15:51 +05:30
Generate a MD5 hash of the desired password:
```shell
gitlab-ctl pg-password-md5 gitlab
# Enter password: <your_password_here>
# Confirm password: <your_password_here>
# fca0b89a972d69f00eb3ec98a5838484
```
Edit `/etc/gitlab/gitlab.rb`:
```ruby
# Fill with the hash generated by `gitlab-ctl pg-password-md5 gitlab`
postgresql['sql_user_password'] = '<md5_hash_of_your_password>'
# Every node that runs Puma or Sidekiq needs to have the database
# password specified as below. If you have a high-availability setup, this
# must be present in all application nodes.
gitlab_rails['db_password'] = '<your_password_here>'
```
2021-09-30 23:02:18 +05:30
2021-09-04 01:27:46 +05:30
1. Define a password for the database [replication user](https://wiki.postgresql.org/wiki/Streaming_Replication).
2020-11-24 15:15:51 +05:30
2021-09-04 01:27:46 +05:30
We will use the username defined in `/etc/gitlab/gitlab.rb` under the `postgresql['sql_replication_user']`
2021-09-30 23:02:18 +05:30
setting. The default value is `gitlab_replicator`, but if you changed it to something else, adapt
2021-09-04 01:27:46 +05:30
the instructions below.
2021-09-30 23:02:18 +05:30
2021-09-04 01:27:46 +05:30
Generate a MD5 hash of the desired password:
2020-11-24 15:15:51 +05:30
```shell
2021-09-04 01:27:46 +05:30
gitlab-ctl pg-password-md5 gitlab_replicator
# Enter password: <your_password_here>
# Confirm password: <your_password_here>
# 950233c0dfc2f39c64cf30457c3b7f1e
2020-11-24 15:15:51 +05:30
```
2021-09-04 01:27:46 +05:30
Edit `/etc/gitlab/gitlab.rb`:
```ruby
# Fill with the hash generated by `gitlab-ctl pg-password-md5 gitlab_replicator`
postgresql['sql_replication_password'] = '<md5_hash_of_your_password>'
```
2020-11-24 15:15:51 +05:30
If you are using an external database not managed by Omnibus GitLab, you need
to create the replicator user and define a password to it manually:
```sql
--- Create a new user 'replicator'
CREATE USER gitlab_replicator;
--- Set/change a password and grants replication privilege
ALTER USER gitlab_replicator WITH REPLICATION ENCRYPTED PASSWORD '<replication_password>';
```
1. Configure PostgreSQL to listen on network interfaces:
For security reasons, PostgreSQL does not listen on any network interfaces
by default. However, Geo requires the **secondary** node to be able to
connect to the **primary** node's database. For this reason, we need the address of
each node.
2021-02-22 17:27:13 +05:30
NOTE:
2020-11-24 15:15:51 +05:30
For external PostgreSQL instances, see [additional instructions](external_database.md).
If you are using a cloud provider, you can lookup the addresses for each
Geo node through your cloud provider's management console.
To lookup the address of a Geo node, SSH in to the Geo node and execute:
```shell
##
## Private address
##
ip route get 255.255.255.255 | awk '{print "Private address:", $NF; exit}'
##
## Public address
##
2021-02-22 17:27:13 +05:30
echo "External address: $(curl --silent "ipinfo.io/ip")"
2020-11-24 15:15:51 +05:30
```
2021-09-04 01:27:46 +05:30
In most cases, the following addresses are used to configure GitLab
2020-11-24 15:15:51 +05:30
Geo:
| Configuration | Address |
|:----------------------------------------|:------------------------------------------------------|
| `postgresql['listen_address']` | **Primary** node's public or VPC private address. |
| `postgresql['md5_auth_cidr_addresses']` | **Secondary** node's public or VPC private addresses. |
If you are using Google Cloud Platform, SoftLayer, or any other vendor that
provides a virtual private cloud (VPC) you can use the **primary** and **secondary** nodes
private addresses (corresponds to "internal address" for Google Cloud Platform) for
`postgresql['md5_auth_cidr_addresses']` and `postgresql['listen_address']`.
The `listen_address` option opens PostgreSQL up to network connections with the interface
2021-09-04 01:27:46 +05:30
corresponding to the given address. See [the PostgreSQL documentation](https://www.postgresql.org/docs/12/runtime-config-connection.html)
2020-11-24 15:15:51 +05:30
for more details.
2021-02-22 17:27:13 +05:30
NOTE:
2021-09-04 01:27:46 +05:30
If you need to use `0.0.0.0` or `*` as the listen_address, you also need to add
2020-11-24 15:15:51 +05:30
`127.0.0.1/32` to the `postgresql['md5_auth_cidr_addresses']` setting, to allow Rails to connect through
`127.0.0.1`. For more information, see [omnibus-5258](https://gitlab.com/gitlab-org/omnibus-gitlab/-/issues/5258).
Depending on your network configuration, the suggested addresses may not
be correct. If your **primary** node and **secondary** nodes connect over a local
area network, or a virtual network connecting availability zones like
[Amazon's VPC](https://aws.amazon.com/vpc/) or [Google's VPC](https://cloud.google.com/vpc/)
you should use the **secondary** node's private address for `postgresql['md5_auth_cidr_addresses']`.
Edit `/etc/gitlab/gitlab.rb` and add the following, replacing the IP
addresses with addresses appropriate to your network configuration:
```ruby
##
## Geo Primary role
2021-10-27 15:23:28 +05:30
## - Configures Postgres settings for replication
## - Prevents automatic upgrade of Postgres since it requires downtime of
## streaming replication to Geo secondary sites
## - Enables standard single-node GitLab services like NGINX, Puma, Redis,
## Sidekiq, etc. If you are segregating services, then you will need to
## explicitly disable unwanted services.
2020-11-24 15:15:51 +05:30
##
2021-09-04 01:27:46 +05:30
roles(['geo_primary_role'])
2020-11-24 15:15:51 +05:30
##
## Primary address
## - replace '<primary_node_ip>' with the public or VPC address of your Geo primary node
##
postgresql['listen_address'] = '<primary_node_ip>'
##
# Allow PostgreSQL client authentication from the primary and secondary IPs. These IPs may be
# public or VPC addresses in CIDR format, for example ['198.51.100.1/32', '198.51.100.2/32']
##
postgresql['md5_auth_cidr_addresses'] = ['<primary_node_ip>/32', '<secondary_node_ip>/32']
##
## Replication settings
## - set this to be the number of Geo secondary nodes you have
##
postgresql['max_replication_slots'] = 1
# postgresql['max_wal_senders'] = 10
# postgresql['wal_keep_segments'] = 10
##
## Disable automatic database migrations temporarily
## (until PostgreSQL is restarted and listening on the private address).
##
gitlab_rails['auto_migrate'] = false
```
1. Optional: If you want to add another **secondary** node, the relevant setting would look like:
```ruby
postgresql['md5_auth_cidr_addresses'] = ['<primary_node_ip>/32', '<secondary_node_ip>/32', '<another_secondary_node_ip>/32']
```
You may also want to edit the `wal_keep_segments` and `max_wal_senders` to match your
2021-09-04 01:27:46 +05:30
database replication requirements. Consult the [PostgreSQL - Replication documentation](https://www.postgresql.org/docs/12/runtime-config-replication.html)
2020-11-24 15:15:51 +05:30
for more information.
1. Save the file and reconfigure GitLab for the database listen changes and
the replication slot changes to be applied:
```shell
gitlab-ctl reconfigure
```
Restart PostgreSQL for its changes to take effect:
```shell
gitlab-ctl restart postgresql
```
1. Re-enable migrations now that PostgreSQL is restarted and listening on the
private address.
Edit `/etc/gitlab/gitlab.rb` and **change** the configuration to `true`:
```ruby
gitlab_rails['auto_migrate'] = true
```
Save the file and reconfigure GitLab:
```shell
gitlab-ctl reconfigure
```
1. Now that the PostgreSQL server is set up to accept remote connections, run
`netstat -plnt | grep 5432` to make sure that PostgreSQL is listening on port
`5432` to the **primary** server's private address.
1. A certificate was automatically generated when GitLab was reconfigured. This
2021-09-04 01:27:46 +05:30
is used automatically to protect your PostgreSQL traffic from
2020-11-24 15:15:51 +05:30
eavesdroppers, but to protect against active ("man-in-the-middle") attackers,
the **secondary** node needs a copy of the certificate. Make a copy of the PostgreSQL
`server.crt` file on the **primary** node by running this command:
```shell
cat ~gitlab-psql/data/server.crt
```
Copy the output into a clipboard or into a local file. You
2021-09-04 01:27:46 +05:30
need it when setting up the **secondary** node! The certificate is not sensitive
2020-11-24 15:15:51 +05:30
data.
2021-09-04 01:27:46 +05:30
#### Step 2. Configure the **secondary** server
2020-11-24 15:15:51 +05:30
1. SSH into your GitLab **secondary** server and login as root:
```shell
sudo -i
```
1. Stop application server and Sidekiq
```shell
gitlab-ctl stop puma
gitlab-ctl stop sidekiq
```
2021-02-22 17:27:13 +05:30
NOTE:
2020-11-24 15:15:51 +05:30
This step is important so we don't try to execute anything before the node is fully configured.
1. [Check TCP connectivity](../../raketasks/maintenance.md) to the **primary** node's PostgreSQL server:
```shell
gitlab-rake gitlab:tcp_check[<primary_node_ip>,5432]
```
2021-02-22 17:27:13 +05:30
NOTE:
2020-11-24 15:15:51 +05:30
If this step fails, you may be using the wrong IP address, or a firewall may
be preventing access to the server. Check the IP address, paying close
attention to the difference between public and private addresses and ensure
that, if a firewall is present, the **secondary** node is permitted to connect to the
**primary** node on port 5432.
1. Create a file `server.crt` in the **secondary** server, with the content you got on the last step of the **primary** node's setup:
```shell
editor server.crt
```
1. Set up PostgreSQL TLS verification on the **secondary** node:
Install the `server.crt` file:
```shell
install \
-D \
-o gitlab-psql \
-g gitlab-psql \
-m 0400 \
-T server.crt ~gitlab-psql/.postgresql/root.crt
```
2021-09-04 01:27:46 +05:30
PostgreSQL now only recognizes that exact certificate when verifying TLS
2020-11-24 15:15:51 +05:30
connections. The certificate can only be replicated by someone with access
to the private key, which is **only** present on the **primary** node.
1. Test that the `gitlab-psql` user can connect to the **primary** node's database
(the default Omnibus database name is `gitlabhq_production`):
```shell
sudo \
-u gitlab-psql /opt/gitlab/embedded/bin/psql \
--list \
-U gitlab_replicator \
-d "dbname=gitlabhq_production sslmode=verify-ca" \
-W \
-h <primary_node_ip>
```
When prompted enter the password you set in the first step for the
`gitlab_replicator` user. If all worked correctly, you should see
the list of **primary** node's databases.
A failure to connect here indicates that the TLS configuration is incorrect.
Ensure that the contents of `~gitlab-psql/data/server.crt` on the **primary** node
match the contents of `~gitlab-psql/.postgresql/root.crt` on the **secondary** node.
1. Configure PostgreSQL:
This step is similar to how we configured the **primary** instance.
We need to enable this, even if using a single node.
Edit `/etc/gitlab/gitlab.rb` and add the following, replacing the IP
addresses with addresses appropriate to your network configuration:
```ruby
##
## Geo Secondary role
## - configure dependent flags automatically to enable Geo
##
2021-09-04 01:27:46 +05:30
roles(['geo_secondary_role'])
2020-11-24 15:15:51 +05:30
##
## Secondary address
## - replace '<secondary_node_ip>' with the public or VPC address of your Geo secondary node
##
postgresql['listen_address'] = '<secondary_node_ip>'
postgresql['md5_auth_cidr_addresses'] = ['<secondary_node_ip>/32']
##
## Database credentials password (defined previously in primary node)
## - replicate same values here as defined in primary node
##
2021-09-04 01:27:46 +05:30
postgresql['sql_replication_password'] = '<md5_hash_of_your_password>'
2020-11-24 15:15:51 +05:30
postgresql['sql_user_password'] = '<md5_hash_of_your_password>'
gitlab_rails['db_password'] = '<your_password_here>'
```
For external PostgreSQL instances, see [additional instructions](external_database.md).
2021-09-04 01:27:46 +05:30
If you bring a former **primary** node back online to serve as a **secondary** node, then you also need to remove `roles(['geo_primary_role'])` or `geo_primary_role['enable'] = true`.
2020-11-24 15:15:51 +05:30
1. Reconfigure GitLab for the changes to take effect:
```shell
gitlab-ctl reconfigure
```
1. Restart PostgreSQL for the IP change to take effect:
```shell
gitlab-ctl restart postgresql
```
2021-09-04 01:27:46 +05:30
#### Step 3. Initiate the replication process
2020-11-24 15:15:51 +05:30
Below we provide a script that connects the database on the **secondary** node to
the database on the **primary** node, replicates the database, and creates the
needed files for streaming replication.
The directories used are the defaults that are set up in Omnibus. If you have
changed any defaults, configure it as you see fit replacing the directories and paths.
2021-02-22 17:27:13 +05:30
WARNING:
2020-11-24 15:15:51 +05:30
Make sure to run this on the **secondary** server as it removes all PostgreSQL's
data before running `pg_basebackup`.
1. SSH into your GitLab **secondary** server and login as root:
```shell
sudo -i
```
1. Choose a database-friendly name to use for your **secondary** node to
use as the replication slot name. For example, if your domain is
`secondary.geo.example.com`, you may use `secondary_example` as the slot
name as shown in the commands below.
1. Execute the command below to start a backup/restore and begin the replication
2021-02-22 17:27:13 +05:30
WARNING:
2020-11-24 15:15:51 +05:30
Each Geo **secondary** node must have its own unique replication slot name.
2021-09-04 01:27:46 +05:30
Using the same slot name between two secondaries breaks PostgreSQL replication.
2020-11-24 15:15:51 +05:30
```shell
gitlab-ctl replicate-geo-database \
--slot-name=<secondary_node_name> \
--host=<primary_node_ip>
```
2021-02-22 17:27:13 +05:30
NOTE:
2020-11-24 15:15:51 +05:30
Replication slot names must only contain lowercase letters, numbers, and the underscore character.
When prompted, enter the _plaintext_ password you set up for the `gitlab_replicator`
user in the first step.
This command also takes a number of additional options. You can use `--help`
to list them all, but here are a couple of tips:
- If PostgreSQL is listening on a non-standard port, add `--port=` as well.
2021-09-04 01:27:46 +05:30
- If your database is too large to be transferred in 30 minutes, you need
2021-09-30 23:02:18 +05:30
to increase the timeout, for example, `--backup-timeout=3600` if you expect the
2020-11-24 15:15:51 +05:30
initial replication to take under an hour.
- Pass `--sslmode=disable` to skip PostgreSQL TLS authentication altogether
2021-09-30 23:02:18 +05:30
(for example, you know the network path is secure, or you are using a site-to-site
2020-11-24 15:15:51 +05:30
VPN). This is **not** safe over the public Internet!
- You can read more details about each `sslmode` in the
2021-09-04 01:27:46 +05:30
[PostgreSQL documentation](https://www.postgresql.org/docs/12/libpq-ssl.html#LIBPQ-SSL-PROTECTION);
2020-11-24 15:15:51 +05:30
the instructions above are carefully written to ensure protection against
both passive eavesdroppers and active "man-in-the-middle" attackers.
- Change the `--slot-name` to the name of the replication slot
2021-09-04 01:27:46 +05:30
to be used on the **primary** database. The script attempts to create the
2020-11-24 15:15:51 +05:30
replication slot automatically if it does not exist.
2021-09-04 01:27:46 +05:30
- If you're repurposing an old server into a Geo **secondary** node, you need to
2020-11-24 15:15:51 +05:30
add `--force` to the command line.
- When not in a production machine you can disable backup step if you
really sure this is what you want by adding `--skip-backup`
The replication process is now complete.
2021-09-04 01:27:46 +05:30
### PgBouncer support (optional)
2020-11-24 15:15:51 +05:30
[PgBouncer](https://www.pgbouncer.org/) may be used with GitLab Geo to pool
2021-09-30 23:02:18 +05:30
PostgreSQL connections, which can improve performance even when using in a
single instance installation.
2021-09-04 01:27:46 +05:30
2021-09-30 23:02:18 +05:30
We recommend using PgBouncer if you use GitLab in a highly available
configuration with a cluster of nodes supporting a Geo **primary** site and
two other clusters of nodes supporting a Geo **secondary** site. One for the
2021-09-04 01:27:46 +05:30
main database and the other for the tracking database. For more information,
2021-06-08 01:23:25 +05:30
see [High Availability with Omnibus GitLab](../../postgresql/replication_and_failover.md).
2020-11-24 15:15:51 +05:30
2021-09-04 01:27:46 +05:30
## Multi-node database replication
2021-01-29 00:20:46 +05:30
2021-09-04 01:27:46 +05:30
In GitLab 14.0, Patroni replaced `repmgr` as the supported
[highly available PostgreSQL solution](../../postgresql/replication_and_failover.md).
2021-01-29 00:20:46 +05:30
2021-09-04 01:27:46 +05:30
NOTE:
If you still haven't [migrated from repmgr to Patroni](#migrating-from-repmgr-to-patroni) you're highly advised to do so.
2021-01-29 00:20:46 +05:30
2021-09-04 01:27:46 +05:30
### Patroni support
2021-01-29 00:20:46 +05:30
2021-09-04 01:27:46 +05:30
Patroni is the official replication management solution for Geo. It
can be used to build a highly available cluster on the **primary** and a **secondary** Geo site.
2021-09-30 23:02:18 +05:30
Using Patroni on a **secondary** site is optional and you don't have to use the same amount of
2021-09-04 01:27:46 +05:30
nodes on each Geo site.
2021-01-29 00:20:46 +05:30
2021-03-11 19:13:27 +05:30
For instructions about how to set up Patroni on the primary site, see the
2021-01-29 00:20:46 +05:30
[PostgreSQL replication and failover with Omnibus GitLab](../../postgresql/replication_and_failover.md#patroni) page.
2021-09-04 01:27:46 +05:30
#### Configuring Patroni cluster for a Geo secondary site
2021-06-08 01:23:25 +05:30
In a Geo secondary site, the main PostgreSQL database is a read-only replica of the primary sites PostgreSQL database.
2021-09-30 23:02:18 +05:30
If you are currently using `repmgr` on your Geo primary site, see [these instructions](#migrating-from-repmgr-to-patroni)
for migrating from `repmgr` to Patroni.
A production-ready and secure setup requires at least:
- 3 Consul nodes _(primary and secondary sites)_
- 2 Patroni nodes _(primary and secondary sites)_
- 1 PgBouncer node _(primary and secondary sites)_
- 1 internal load-balancer _(primary site only)_
The internal load balancer provides a single endpoint for connecting to the Patroni cluster's leader whenever a new leader is
elected, and it is required for enabling cascading replication from the secondary sites.
2021-02-22 17:27:13 +05:30
2021-09-30 23:02:18 +05:30
Be sure to use [password credentials](../../postgresql/replication_and_failover.md#database-authorization-for-patroni)
and other database best practices.
2021-01-29 00:20:46 +05:30
2021-09-04 01:27:46 +05:30
##### Step 1. Configure Patroni permanent replication slot on the primary site
2021-03-08 18:12:59 +05:30
To set up database replication with Patroni on a secondary node, we need to
configure a _permanent replication slot_ on the primary node's Patroni cluster,
and ensure password authentication is used.
For each Patroni instance on the primary site **starting on the Patroni
Leader instance**:
1. SSH into your Patroni instance and login as root:
```shell
sudo -i
```
1. Edit `/etc/gitlab/gitlab.rb` and add the following:
```ruby
2021-09-04 01:27:46 +05:30
roles(['patroni_role'])
2021-09-30 23:02:18 +05:30
2021-09-04 01:27:46 +05:30
consul['services'] = %w(postgresql)
2021-03-08 18:12:59 +05:30
consul['configuration'] = {
2021-06-08 01:23:25 +05:30
retry_join: %w[CONSUL_PRIMARY1_IP CONSUL_PRIMARY2_IP CONSUL_PRIMARY3_IP]
2021-03-08 18:12:59 +05:30
}
2021-09-30 23:02:18 +05:30
2021-03-08 18:12:59 +05:30
# You need one entry for each secondary, with a unique name following PostgreSQL slot_name constraints:
#
2021-09-04 01:27:46 +05:30
# Configuration syntax is: 'unique_slotname' => { 'type' => 'physical' },
2021-03-08 18:12:59 +05:30
# We don't support setting a permanent replication slot for logical replication type
patroni['replication_slots'] = {
'geo_secondary' => { 'type' => 'physical' }
}
patroni['use_pg_rewind'] = true
patroni['postgresql']['max_wal_senders'] = 8 # Use double of the amount of patroni/reserved slots (3 patronis + 1 reserved slot for a Geo secondary).
patroni['postgresql']['max_replication_slots'] = 8 # Use double of the amount of patroni/reserved slots (3 patronis + 1 reserved slot for a Geo secondary).
2021-09-30 23:02:18 +05:30
patroni['username'] = 'PATRONI_API_USERNAME'
patroni['password'] = 'PATRONI_API_PASSWORD'
2021-09-04 01:27:46 +05:30
patroni['replication_password'] = 'PLAIN_TEXT_POSTGRESQL_REPLICATION_PASSWORD'
2021-03-08 18:12:59 +05:30
2021-10-27 15:23:28 +05:30
# Add all patroni nodes to the allowlist
patroni['allowlist'] = %w[
127.0.0.1/32
PATRONI_PRIMARY1_IP/32 PATRONI_PRIMARY2_IP/32 PATRONI_PRIMARY3_IP/32
PATRONI_SECONDARY1_IP/32 PATRONI_SECONDARY2_IP/32 PATRONI_SECONDARY3_IP/32
]
2021-09-04 01:27:46 +05:30
# We list all secondary instances as they can all become a Standby Leader
postgresql['md5_auth_cidr_addresses'] = %w[
PATRONI_PRIMARY1_IP/32 PATRONI_PRIMARY2_IP/32 PATRONI_PRIMARY3_IP/32 PATRONI_PRIMARY_PGBOUNCER/32
PATRONI_SECONDARY1_IP/32 PATRONI_SECONDARY2_IP/32 PATRONI_SECONDARY3_IP/32 PATRONI_SECONDARY_PGBOUNCER/32
2021-03-08 18:12:59 +05:30
]
postgresql['pgbouncer_user_password'] = 'PGBOUNCER_PASSWORD_HASH'
postgresql['sql_replication_password'] = 'POSTGRESQL_REPLICATION_PASSWORD_HASH'
postgresql['sql_user_password'] = 'POSTGRESQL_PASSWORD_HASH'
2021-09-04 01:27:46 +05:30
postgresql['listen_address'] = '0.0.0.0' # You can use a public or VPC address here instead
2021-03-08 18:12:59 +05:30
```
1. Reconfigure GitLab for the changes to take effect:
```shell
gitlab-ctl reconfigure
```
2021-09-04 01:27:46 +05:30
##### Step 2. Configure the internal load balancer on the primary site
2021-03-11 19:13:27 +05:30
To avoid reconfiguring the Standby Leader on the secondary site whenever a new
2021-09-04 01:27:46 +05:30
Leader is elected on the primary site, we need to set up a TCP internal load
balancer which gives a single endpoint for connecting to the Patroni
2021-03-11 19:13:27 +05:30
cluster's Leader.
The Omnibus GitLab packages do not include a Load Balancer. Here's how you
could do it with [HAProxy](https://www.haproxy.org/).
2021-09-04 01:27:46 +05:30
The following IPs and names are used as an example:
2021-03-11 19:13:27 +05:30
- `10.6.0.21`: Patroni 1 (`patroni1.internal`)
- `10.6.0.21`: Patroni 2 (`patroni2.internal`)
- `10.6.0.22`: Patroni 3 (`patroni3.internal`)
```plaintext
global
log /dev/log local0
log localhost local1 notice
log stdout format raw local0
defaults
log global
default-server inter 3s fall 3 rise 2 on-marked-down shutdown-sessions
frontend internal-postgresql-tcp-in
bind *:5000
mode tcp
option tcplog
default_backend postgresql
backend postgresql
option httpchk
http-check expect status 200
server patroni1.internal 10.6.0.21:5432 maxconn 100 check port 8008
server patroni2.internal 10.6.0.22:5432 maxconn 100 check port 8008
server patroni3.internal 10.6.0.23.195:5432 maxconn 100 check port 8008
```
Refer to your preferred Load Balancer's documentation for further guidance.
2021-09-04 01:27:46 +05:30
##### Step 3. Configure a PgBouncer node on the secondary site
2021-06-08 01:23:25 +05:30
A production-ready and highly available configuration requires at least
three Consul nodes, a minimum of one PgBouncer node, but its recommended to have
one per database node. An internal load balancer (TCP) is required when there is
more than one PgBouncer service nodes. The internal load balancer provides a single
endpoint for connecting to the PgBouncer cluster. For more information,
see [High Availability with Omnibus GitLab](../../postgresql/replication_and_failover.md).
Follow the minimal configuration for the PgBouncer node:
1. SSH into your PgBouncer node and login as root:
```shell
sudo -i
```
1. Edit `/etc/gitlab/gitlab.rb` and add the following:
```ruby
# Disable all components except Pgbouncer and Consul agent
2021-09-04 01:27:46 +05:30
roles(['pgbouncer_role'])
2021-06-08 01:23:25 +05:30
# PgBouncer configuration
2021-09-04 01:27:46 +05:30
pgbouncer['admin_users'] = %w(pgbouncer gitlab-consul)
2021-06-08 01:23:25 +05:30
pgbouncer['users'] = {
2021-09-04 01:27:46 +05:30
'gitlab-consul': {
# Generate it with: `gitlab-ctl pg-password-md5 gitlab-consul`
password: 'GITLAB_CONSUL_PASSWORD_HASH'
},
2021-06-08 01:23:25 +05:30
'pgbouncer': {
2021-09-04 01:27:46 +05:30
# Generate it with: `gitlab-ctl pg-password-md5 pgbouncer`
2021-06-08 01:23:25 +05:30
password: 'PGBOUNCER_PASSWORD_HASH'
}
}
# Consul configuration
consul['watchers'] = %w(postgresql)
consul['configuration'] = {
retry_join: %w[CONSUL_SECONDARY1_IP CONSUL_SECONDARY2_IP CONSUL_SECONDARY3_IP]
}
consul['monitoring_service_discovery'] = true
```
1. Reconfigure GitLab for the changes to take effect:
```shell
gitlab-ctl reconfigure
```
1. Create a `.pgpass` file so Consul is able to reload PgBouncer. Enter the `PLAIN_TEXT_PGBOUNCER_PASSWORD` twice when asked:
```shell
gitlab-ctl write-pgpass --host 127.0.0.1 --database pgbouncer --user pgbouncer --hostuser gitlab-consul
```
2021-09-04 01:27:46 +05:30
1. Reload the PgBouncer service:
2021-06-08 01:23:25 +05:30
```shell
2021-09-04 01:27:46 +05:30
gitlab-ctl hup pgbouncer
2021-06-08 01:23:25 +05:30
```
2021-09-04 01:27:46 +05:30
##### Step 4. Configure a Standby cluster on the secondary site
2021-03-08 18:12:59 +05:30
NOTE:
If you are converting a secondary site to a Patroni Cluster, you must start
2021-09-04 01:27:46 +05:30
on the PostgreSQL instance. It becomes the Patroni Standby Leader instance,
2021-03-08 18:12:59 +05:30
and then you can switchover to another replica if you need.
For each Patroni instance on the secondary site:
1. SSH into your Patroni node and login as root:
```shell
sudo -i
```
1. Edit `/etc/gitlab/gitlab.rb` and add the following:
```ruby
2021-09-04 01:27:46 +05:30
roles(['consul_role', 'patroni_role'])
2021-03-08 18:12:59 +05:30
consul['enable'] = true
consul['configuration'] = {
2021-06-08 01:23:25 +05:30
retry_join: %w[CONSUL_SECONDARY1_IP CONSUL_SECONDARY2_IP CONSUL_SECONDARY3_IP]
2021-03-08 18:12:59 +05:30
}
postgresql['md5_auth_cidr_addresses'] = [
'PATRONI_SECONDARY1_IP/32', 'PATRONI_SECONDARY2_IP/32', 'PATRONI_SECONDARY3_IP/32', 'PATRONI_SECONDARY_PGBOUNCER/32',
# Any other instance that needs access to the database as per documentation
]
2021-10-27 15:23:28 +05:30
# Add patroni nodes to the allowlist
patroni['allowlist'] = %w[
127.0.0.1/32
PATRONI_SECONDARY1_IP/32 PATRONI_SECONDARY2_IP/32 PATRONI_SECONDARY3_IP/32
]
2021-03-08 18:12:59 +05:30
patroni['standby_cluster']['enable'] = true
2021-03-11 19:13:27 +05:30
patroni['standby_cluster']['host'] = 'INTERNAL_LOAD_BALANCER_PRIMARY_IP'
patroni['standby_cluster']['port'] = INTERNAL_LOAD_BALANCER_PRIMARY_PORT
2021-03-08 18:12:59 +05:30
patroni['standby_cluster']['primary_slot_name'] = 'geo_secondary' # Or the unique replication slot name you setup before
2021-09-30 23:02:18 +05:30
patroni['username'] = 'PATRONI_API_USERNAME'
patroni['password'] = 'PATRONI_API_PASSWORD'
2021-03-08 18:12:59 +05:30
patroni['replication_password'] = 'PLAIN_TEXT_POSTGRESQL_REPLICATION_PASSWORD'
patroni['use_pg_rewind'] = true
patroni['postgresql']['max_wal_senders'] = 5 # A minimum of three for one replica, plus two for each additional replica
patroni['postgresql']['max_replication_slots'] = 5 # A minimum of three for one replica, plus two for each additional replica
2021-09-30 23:02:18 +05:30
2021-09-04 01:27:46 +05:30
postgresql['pgbouncer_user_password'] = 'PGBOUNCER_PASSWORD_HASH'
postgresql['sql_replication_password'] = 'POSTGRESQL_REPLICATION_PASSWORD_HASH'
postgresql['sql_user_password'] = 'POSTGRESQL_PASSWORD_HASH'
postgresql['listen_address'] = '0.0.0.0' # You can use a public or VPC address here instead
2021-09-30 23:02:18 +05:30
2021-09-04 01:27:46 +05:30
gitlab_rails['dbpassword'] = 'POSTGRESQL_PASSWORD'
gitlab_rails['enable'] = true
gitlab_rails['auto_migrate'] = false
2021-03-08 18:12:59 +05:30
```
1. Reconfigure GitLab for the changes to take effect.
2021-09-30 23:02:18 +05:30
This is required to bootstrap PostgreSQL users and settings.
2021-03-08 18:12:59 +05:30
2021-09-30 23:02:18 +05:30
- If this is a fresh installation of Patroni:
```shell
gitlab-ctl reconfigure
```
- If you are configuring a Patroni standby cluster on a site that previously had a working Patroni cluster:
```shell
gitlab-ctl stop patroni
rm -rf /var/opt/gitlab/postgresql/data
/opt/gitlab/embedded/bin/patronictl -c /var/opt/gitlab/patroni/patroni.yaml remove postgresql-ha
gitlab-ctl reconfigure
gitlab-ctl start patroni
```
2021-03-08 18:12:59 +05:30
2021-06-08 01:23:25 +05:30
### Migrating from repmgr to Patroni
2021-02-22 17:27:13 +05:30
1. Before migrating, it is recommended that there is no replication lag between the primary and secondary sites and that replication is paused. In GitLab 13.2 and later, you can pause and resume replication with `gitlab-ctl geo-replication-pause` and `gitlab-ctl geo-replication-resume` on a Geo secondary database node.
2021-04-29 21:17:54 +05:30
1. Follow the [instructions to migrate repmgr to Patroni](../../postgresql/replication_and_failover.md#switching-from-repmgr-to-patroni). When configuring Patroni on each primary site database node, add `patroni['replication_slots'] = { '<slot_name>' => 'physical' }`
2021-09-04 01:27:46 +05:30
to `gitlab.rb` where `<slot_name>` is the name of the replication slot for your Geo secondary. This ensures that Patroni recognizes the replication slot as permanent and not drop it upon restarting.
2021-02-22 17:27:13 +05:30
1. If database replication to the secondary was paused before migration, resume replication once Patroni is confirmed working on the primary.
2021-06-08 01:23:25 +05:30
### Migrating a single PostgreSQL node to Patroni
2021-03-08 18:12:59 +05:30
Before the introduction of Patroni, Geo had no Omnibus support for HA setups on the secondary node.
With Patroni it's now possible to support that. In order to migrate the existing PostgreSQL to Patroni:
1. Make sure you have a Consul cluster setup on the secondary (similar to how you set it up on the primary).
1. [Configure a permanent replication slot](#step-1-configure-patroni-permanent-replication-slot-on-the-primary-site).
2021-03-11 19:13:27 +05:30
1. [Configure the internal load balancer](#step-2-configure-the-internal-load-balancer-on-the-primary-site).
2021-06-08 01:23:25 +05:30
1. [Configure a PgBouncer node](#step-3-configure-a-pgbouncer-node-on-the-secondary-site)
1. [Configure a Standby Cluster](#step-4-configure-a-standby-cluster-on-the-secondary-site)
2021-03-08 18:12:59 +05:30
on that single node machine.
2021-03-11 19:13:27 +05:30
2021-09-04 01:27:46 +05:30
You end up with a "Standby Cluster" with a single node. That allows you to later on add additional Patroni nodes
2021-03-08 18:12:59 +05:30
by following the same instructions above.
2021-06-08 01:23:25 +05:30
### Configuring Patroni cluster for the tracking PostgreSQL database
Secondary sites use a separate PostgreSQL installation as a tracking database to
keep track of replication status and automatically recover from potential replication issues.
2021-09-04 01:27:46 +05:30
Omnibus automatically configures a tracking database when `roles(['geo_secondary_role'])` is set.
2021-06-08 01:23:25 +05:30
2021-09-30 23:02:18 +05:30
If you want to run this database in a highly available configuration, don't use the `geo_secondary_role` above.
Instead, follow the instructions below.
2021-06-08 01:23:25 +05:30
2021-09-30 23:02:18 +05:30
A production-ready and secure setup requires at least three Consul nodes, two
Patroni nodes and one PgBouncer node on the secondary site.
2021-06-08 01:23:25 +05:30
2021-09-30 23:02:18 +05:30
Be sure to use [password credentials](../../postgresql/replication_and_failover.md#database-authorization-for-patroni)
and other database best practices.
#### Step 1. Configure a PgBouncer node on the secondary site
2021-06-08 01:23:25 +05:30
Follow the minimal configuration for the PgBouncer node for the tracking database:
1. SSH into your PgBouncer node and login as root:
```shell
sudo -i
```
1. Edit `/etc/gitlab/gitlab.rb` and add the following:
```ruby
# Disable all components except Pgbouncer and Consul agent
2021-09-04 01:27:46 +05:30
roles(['pgbouncer_role'])
2021-06-08 01:23:25 +05:30
# PgBouncer configuration
pgbouncer['users'] = {
'pgbouncer': {
password: 'PGBOUNCER_PASSWORD_HASH'
}
}
pgbouncer['databases'] = {
gitlabhq_geo_production: {
user: 'pgbouncer',
password: 'PGBOUNCER_PASSWORD_HASH'
}
}
# Consul configuration
consul['watchers'] = %w(postgresql)
consul['configuration'] = {
retry_join: %w[CONSUL_TRACKINGDB1_IP CONSUL_TRACKINGDB2_IP CONSUL_TRACKINGDB3_IP]
}
consul['monitoring_service_discovery'] = true
# GitLab database settings
gitlab_rails['db_database'] = 'gitlabhq_geo_production'
gitlab_rails['db_username'] = 'gitlab_geo'
```
1. Reconfigure GitLab for the changes to take effect:
```shell
gitlab-ctl reconfigure
```
1. Create a `.pgpass` file so Consul is able to reload PgBouncer. Enter the `PLAIN_TEXT_PGBOUNCER_PASSWORD` twice when asked:
```shell
gitlab-ctl write-pgpass --host 127.0.0.1 --database pgbouncer --user pgbouncer --hostuser gitlab-consul
```
1. Restart the PgBouncer service:
```shell
gitlab-ctl restart pgbouncer
```
#### Step 2. Configure a Patroni cluster
For each Patroni instance on the secondary site for the tracking database:
1. SSH into your Patroni node and login as root:
```shell
sudo -i
```
1. Edit `/etc/gitlab/gitlab.rb` and add the following:
```ruby
# Disable all components except PostgreSQL, Patroni, and Consul
2021-09-04 01:27:46 +05:30
roles(['patroni_role'])
2021-06-08 01:23:25 +05:30
# Consul configuration
consul['services'] = %w(postgresql)
consul['configuration'] = {
server: true,
retry_join: %w[CONSUL_TRACKINGDB1_IP CONSUL_TRACKINGDB2_IP CONSUL_TRACKINGDB3_IP]
}
# PostgreSQL configuration
postgresql['listen_address'] = '0.0.0.0'
postgresql['hot_standby'] = 'on'
postgresql['wal_level'] = 'replica'
postgresql['pgbouncer_user_password'] = 'PGBOUNCER_PASSWORD_HASH'
postgresql['sql_replication_password'] = 'POSTGRESQL_REPLICATION_PASSWORD_HASH'
postgresql['sql_user_password'] = 'POSTGRESQL_PASSWORD_HASH'
postgresql['md5_auth_cidr_addresses'] = [
'PATRONI_TRACKINGDB1_IP/32', 'PATRONI_TRACKINGDB2_IP/32', 'PATRONI_TRACKINGDB3_IP/32', 'PATRONI_TRACKINGDB_PGBOUNCER/32',
# Any other instance that needs access to the database as per documentation
]
2021-10-27 15:23:28 +05:30
# Add patroni nodes to the allowlist
patroni['allowlist'] = %w[
127.0.0.1/32
PATRONI_TRACKINGDB1_IP/32 PATRONI_TRACKINGDB2_IP/32 PATRONI_TRACKINGDB3_IP/32
]
2021-06-08 01:23:25 +05:30
# Patroni configuration
2021-09-30 23:02:18 +05:30
patroni['username'] = 'PATRONI_API_USERNAME'
patroni['password'] = 'PATRONI_API_PASSWORD'
2021-06-08 01:23:25 +05:30
patroni['replication_password'] = 'PLAIN_TEXT_POSTGRESQL_REPLICATION_PASSWORD'
patroni['postgresql']['max_wal_senders'] = 5 # A minimum of three for one replica, plus two for each additional replica
# GitLab database settings
gitlab_rails['db_database'] = 'gitlabhq_geo_production'
gitlab_rails['db_username'] = 'gitlab_geo'
2021-09-04 01:27:46 +05:30
gitlab_rails['enable'] = true
2021-06-08 01:23:25 +05:30
# Disable automatic database migrations
gitlab_rails['auto_migrate'] = false
```
1. Reconfigure GitLab for the changes to take effect.
This is required to bootstrap PostgreSQL users and settings:
```shell
gitlab-ctl reconfigure
```
#### Step 3. Configure the tracking database on the secondary nodes
For each node running the `gitlab-rails`, `sidekiq`, and `geo-logcursor` services:
1. SSH into your node and login as root:
```shell
sudo -i
```
1. Edit `/etc/gitlab/gitlab.rb` and add the following attributes. You may have other attributes set, but the following need to be set.
```ruby
# Tracking database settings
geo_secondary['db_username'] = 'gitlab_geo'
geo_secondary['db_password'] = 'PLAIN_TEXT_PGBOUNCER_PASSWORD'
geo_secondary['db_database'] = 'gitlabhq_geo_production'
geo_secondary['db_host'] = 'PATRONI_TRACKINGDB_PGBOUNCER_IP'
geo_secondary['db_port'] = 6432
geo_secondary['auto_migrate'] = false
# Disable the tracking database service
geo_postgresql['enable'] = false
```
1. Reconfigure GitLab for the changes to take effect.
```shell
gitlab-ctl reconfigure
```
1. Run the tracking database migrations:
```shell
gitlab-rake geo:db:migrate
```
### Migrating a single tracking database node to Patroni
Before the introduction of Patroni, Geo had no Omnibus support for HA setups on
the secondary node.
With Patroni, it's now possible to support that. Due to some restrictions on the
Patroni implementation on Omnibus that do not allow us to manage two different
clusters on the same machine, we recommend setting up a new Patroni cluster for
the tracking database by following the same instructions above.
2021-09-04 01:27:46 +05:30
The secondary nodes backfill the new tracking database, and no data
synchronization is required.
2021-06-08 01:23:25 +05:30
2020-11-24 15:15:51 +05:30
## Troubleshooting
Read the [troubleshooting document](../replication/troubleshooting.md).