debian-mirror-gitlab/doc/administration/gitaly/praefect.md

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

1741 lines
64 KiB
Markdown
Raw Permalink Normal View History

2020-05-24 23:13:21 +05:30
---
2022-08-13 15:12:31 +05:30
stage: Systems
2020-06-23 00:09:42 +05:30
group: Gitaly
2022-11-25 23:54:43 +05:30
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/product/ux/technical-writing/#assignments
2020-05-24 23:13:21 +05:30
---
2019-12-21 20:55:43 +05:30
2021-04-29 21:17:54 +05:30
# Configure Gitaly Cluster **(FREE SELF)**
2019-12-21 20:55:43 +05:30
2021-06-08 01:23:25 +05:30
Configure Gitaly Cluster using either:
2021-09-04 01:27:46 +05:30
- Gitaly Cluster configuration instructions available as part of
[reference architectures](../reference_architectures/index.md) for installations of up to:
- [3000 users](../reference_architectures/3k_users.md#configure-gitaly-cluster).
- [5000 users](../reference_architectures/5k_users.md#configure-gitaly-cluster).
- [10,000 users](../reference_architectures/10k_users.md#configure-gitaly-cluster).
- [25,000 users](../reference_architectures/25k_users.md#configure-gitaly-cluster).
- [50,000 users](../reference_architectures/50k_users.md#configure-gitaly-cluster).
- The custom configuration instructions that follow on this page.
2021-06-08 01:23:25 +05:30
Smaller GitLab installations may need only [Gitaly itself](index.md).
2020-10-24 23:57:45 +05:30
2021-10-27 15:23:28 +05:30
## Requirements
2019-12-21 20:55:43 +05:30
2020-05-24 23:13:21 +05:30
The minimum recommended configuration for a Gitaly Cluster requires:
2019-12-21 20:55:43 +05:30
2020-05-24 23:13:21 +05:30
- 1 load balancer
- 1 PostgreSQL server (PostgreSQL 11 or newer)
- 3 Praefect nodes
2020-04-08 14:13:33 +05:30
- 3 Gitaly nodes (1 primary, 2 secondary)
2023-03-04 22:38:38 +05:30
NOTE:
[Disk requirements](index.md#disk-requirements) apply to Gitaly nodes.
2023-01-13 00:05:48 +05:30
You should configure an odd number of Gitaly nodes so that transactions have a tie-breaker in case one of the
Gitaly nodes fails in a mutating RPC call.
2021-10-27 15:23:28 +05:30
See the [design document](https://gitlab.com/gitlab-org/gitaly/-/blob/master/doc/design_ha.md)
2020-04-08 14:13:33 +05:30
for implementation details.
2021-04-29 21:17:54 +05:30
NOTE:
If not set in GitLab, feature flags are read as false from the console and Praefect uses their
default value. The default value depends on the GitLab version.
2022-04-04 11:22:00 +05:30
### Network latency and connectivity
2021-10-27 15:23:28 +05:30
2022-04-04 11:22:00 +05:30
Network latency for Gitaly Cluster should ideally be measurable in single-digit milliseconds. Latency is particularly
important for:
2023-03-04 22:38:38 +05:30
- Gitaly node health checks. Nodes must be able to respond 1 second or faster.
2022-04-04 11:22:00 +05:30
- Reference transactions that enforce [strong consistency](index.md#strong-consistency). Lower latencies mean Gitaly
nodes can agree on changes faster.
Achieving acceptable latency between Gitaly nodes:
- On physical networks generally means high bandwidth, single location connections.
2023-03-04 22:38:38 +05:30
- On the cloud generally means in the same region, including allowing cross availability zone replication. These links
are designed for this type of synchronization. Latency of less than 2 ms should be sufficient for Gitaly Cluster.
2022-04-04 11:22:00 +05:30
If you can't provide low network latencies for replication (for example, between distant locations), consider Geo. For
2022-07-23 23:45:48 +05:30
more information, see [Comparison to Geo](index.md#comparison-to-geo).
2022-04-04 11:22:00 +05:30
Gitaly Cluster [components](index.md#components) communicate with each other over many routes. Your firewall rules must
allow the following for Gitaly Cluster to function properly:
2021-10-27 15:23:28 +05:30
| From | To | Default port | TLS port |
|:-----------------------|:-----------------------|:-------------|:---------|
| GitLab | Praefect load balancer | `2305` | `3305` |
| Praefect load balancer | Praefect | `2305` | `3305` |
| Praefect | Gitaly | `8075` | `9999` |
2022-07-23 23:45:48 +05:30
| Praefect | GitLab (internal API) | `80` | `443` |
2021-10-27 15:23:28 +05:30
| Gitaly | GitLab (internal API) | `80` | `443` |
| Gitaly | Praefect load balancer | `2305` | `3305` |
| Gitaly | Praefect | `2305` | `3305` |
| Gitaly | Gitaly | `8075` | `9999` |
NOTE:
Gitaly does not directly connect to Praefect. However, requests from Gitaly to the Praefect
load balancer may still be blocked unless firewalls on the Praefect nodes allow traffic from
the Gitaly nodes.
2022-07-23 23:45:48 +05:30
### Praefect database storage
The requirements are relatively low because the database contains only metadata of:
- Where repositories are located.
- Some queued work.
2023-03-04 22:38:38 +05:30
It depends on the number of repositories, but a good minimum is 5-10 GB, similar to the main
2022-07-23 23:45:48 +05:30
GitLab application database.
2020-04-08 14:13:33 +05:30
## Setup Instructions
2021-09-30 23:02:18 +05:30
If you [installed](https://about.gitlab.com/install/) GitLab using the Omnibus GitLab package
(highly recommended), follow the steps below:
2019-12-21 20:55:43 +05:30
2020-04-08 14:13:33 +05:30
1. [Preparation](#preparation)
1. [Configuring the Praefect database](#postgresql)
1. [Configuring the Praefect proxy/router](#praefect)
1. [Configuring each Gitaly node](#gitaly) (once for each Gitaly node)
2020-05-24 23:13:21 +05:30
1. [Configure the load balancer](#load-balancer)
2020-04-08 14:13:33 +05:30
1. [Updating the GitLab server configuration](#gitlab)
2020-04-22 19:07:51 +05:30
1. [Configure Grafana](#grafana)
2019-12-21 20:55:43 +05:30
2020-04-08 14:13:33 +05:30
### Preparation
2020-03-13 15:44:24 +05:30
2022-10-11 01:57:18 +05:30
Before beginning, you should already have a working GitLab instance.
2022-08-27 11:52:29 +05:30
[Learn how to install GitLab](https://about.gitlab.com/install/).
2019-12-21 20:55:43 +05:30
2023-03-04 22:38:38 +05:30
Provision a PostgreSQL server. You should use the PostgreSQL that is shipped
2021-09-30 23:02:18 +05:30
with Omnibus GitLab and use it to configure the PostgreSQL database. You can use an
external PostgreSQL server (version 11 or newer) but you must set it up [manually](#manual-database-setup).
2019-12-21 20:55:43 +05:30
2021-09-30 23:02:18 +05:30
Prepare all your new nodes by [installing GitLab](https://about.gitlab.com/install/). You need:
2019-12-21 20:55:43 +05:30
2021-09-30 23:02:18 +05:30
- 1 PostgreSQL node
- 1 PgBouncer node (optional)
2020-11-24 15:15:51 +05:30
- At least 1 Praefect node (minimal storage required)
2020-04-08 14:13:33 +05:30
- 3 Gitaly nodes (high CPU, high memory, fast storage)
2020-04-22 19:07:51 +05:30
- 1 GitLab server
2020-04-08 14:13:33 +05:30
2021-09-30 23:02:18 +05:30
You also need the IP/host address for each node:
2020-04-08 14:13:33 +05:30
2021-09-30 23:02:18 +05:30
1. `PRAEFECT_LOADBALANCER_HOST`: the IP/host address of Praefect load balancer
1. `POSTGRESQL_HOST`: the IP/host address of the PostgreSQL server
1. `PGBOUNCER_HOST`: the IP/host address of the PostgreSQL server
2020-04-22 19:07:51 +05:30
1. `PRAEFECT_HOST`: the IP/host address of the Praefect server
2021-03-11 19:13:27 +05:30
1. `GITALY_HOST_*`: the IP or host address of each Gitaly server
2020-04-22 19:07:51 +05:30
1. `GITLAB_HOST`: the IP/host address of the GitLab server
2021-04-29 21:17:54 +05:30
If you are using Google Cloud Platform, SoftLayer, or any other vendor that provides a virtual private cloud (VPC) you can use the private addresses for each cloud instance (corresponds to "internal address" for Google Cloud Platform) for `PRAEFECT_HOST`, `GITALY_HOST_*`, and `GITLAB_HOST`.
2019-12-21 20:55:43 +05:30
2020-01-01 13:55:28 +05:30
#### Secrets
2020-04-08 14:13:33 +05:30
The communication between components is secured with different secrets, which
are described below. Before you begin, generate a unique secret for each, and
2021-03-11 19:13:27 +05:30
make note of it. This enables you to replace these placeholder tokens
2020-04-08 14:13:33 +05:30
with secure tokens as you complete the setup process.
1. `GITLAB_SHELL_SECRET_TOKEN`: this is used by Git hooks to make callback HTTP
API requests to GitLab when accepting a Git push. This secret is shared with
GitLab Shell for legacy reasons.
1. `PRAEFECT_EXTERNAL_TOKEN`: repositories hosted on your Praefect cluster can
only be accessed by Gitaly clients that carry this token.
1. `PRAEFECT_INTERNAL_TOKEN`: this token is used for replication traffic inside
2023-05-27 22:25:52 +05:30
your Praefect cluster. This token is distinct from `PRAEFECT_EXTERNAL_TOKEN`
2020-04-08 14:13:33 +05:30
because Gitaly clients must not be able to access internal nodes of the
Praefect cluster directly; that could lead to data loss.
2020-03-13 15:44:24 +05:30
1. `PRAEFECT_SQL_PASSWORD`: this password is used by Praefect to connect to
2020-04-08 14:13:33 +05:30
PostgreSQL.
2021-09-30 23:02:18 +05:30
1. `PRAEFECT_SQL_PASSWORD_HASH`: the hash of password of the Praefect user.
Use `gitlab-ctl pg-password-md5 praefect` to generate the hash. The command
asks for the password for `praefect` user. Enter `PRAEFECT_SQL_PASSWORD`
plaintext password. By default, Praefect uses `praefect` user, but you can
change it.
1. `PGBOUNCER_SQL_PASSWORD_HASH`: the hash of password of the PgBouncer user.
PgBouncer uses this password to connect to PostgreSQL. For more details
see [bundled PgBouncer](../postgresql/pgbouncer.md) documentation.
2020-03-13 15:44:24 +05:30
2021-02-22 17:27:13 +05:30
We note in the instructions below where these secrets are required.
2020-03-13 15:44:24 +05:30
2021-04-29 21:17:54 +05:30
NOTE:
Omnibus GitLab installations can use `gitlab-secrets.json` for `GITLAB_SHELL_SECRET_TOKEN`.
2023-01-13 00:05:48 +05:30
### Customize time server setting
By default, Gitaly and Praefect nodes use the time server at `pool.ntp.org` for time synchronization checks. You can customize this setting by adding the
following to `gitlab.rb` on each node:
- `gitaly['env'] = { "NTP_HOST" => "ntp.example.com" }`, for Gitaly nodes.
- `praefect['env'] = { "NTP_HOST" => "ntp.example.com" }`, for Praefect nodes.
2020-04-08 14:13:33 +05:30
### PostgreSQL
2020-03-13 15:44:24 +05:30
2021-02-22 17:27:13 +05:30
NOTE:
2020-07-28 23:09:34 +05:30
Do not store the GitLab application database and the Praefect
2021-09-30 23:02:18 +05:30
database on the same PostgreSQL server if using [Geo](../geo/index.md).
The replication state is internal to each instance of GitLab and should
not be replicated.
2020-03-13 15:44:24 +05:30
2023-03-17 16:20:25 +05:30
These instructions help set up a single PostgreSQL database, which creates a single point of failure. To avoid this, you can configure your own clustered
PostgreSQL. Support for PostgreSQL replication and failover using Omnibus GitLab is proposed in [epic 7814](https://gitlab.com/groups/gitlab-org/-/epics/7814).
Clustered database support for other databases (for example, Praefect and Geo databases) is proposed in
[issue 7292](https://gitlab.com/gitlab-org/omnibus-gitlab/-/issues/7292).
2021-09-30 23:02:18 +05:30
The following options are available:
2020-10-24 23:57:45 +05:30
2021-04-29 21:17:54 +05:30
- For non-Geo installations, either:
- Use one of the documented [PostgreSQL setups](../postgresql/index.md).
2021-10-27 15:23:28 +05:30
- Use your own third-party database setup. This requires [manual setup](#manual-database-setup).
2020-10-24 23:57:45 +05:30
- For Geo instances, either:
- Set up a separate [PostgreSQL instance](https://www.postgresql.org/docs/11/high-availability.html).
- Use a cloud-managed PostgreSQL service. AWS
2021-01-03 14:25:43 +05:30
[Relational Database Service](https://aws.amazon.com/rds/) is recommended.
2020-10-24 23:57:45 +05:30
2022-07-23 23:45:48 +05:30
Setting up PostgreSQL creates empty Praefect tables. For more information, see the
[relevant troubleshooting section](troubleshooting.md#relation-does-not-exist-errors).
#### Running GitLab and Praefect databases on the same server
The GitLab application database and the Praefect database can be run on the same server. However, Praefect should have
its own database server when using Omnibus GitLab PostgreSQL. If there is a failover, Praefect isn't aware and starts to
fail as the database it's trying to use would either:
- Be unavailable.
- In read-only mode.
2021-09-30 23:02:18 +05:30
#### Manual database setup
2020-03-13 15:44:24 +05:30
2021-09-30 23:02:18 +05:30
To complete this section you need:
2020-03-13 15:44:24 +05:30
2021-09-30 23:02:18 +05:30
- One Praefect node
- One PostgreSQL node (version 11 or newer)
- A PostgreSQL user with permissions to manage the database server
2020-03-13 15:44:24 +05:30
2021-09-30 23:02:18 +05:30
In this section, we configure the PostgreSQL database. This can be used for both external
and Omnibus-provided PostgreSQL server.
2020-03-13 15:44:24 +05:30
2021-09-30 23:02:18 +05:30
To run the following instructions, you can use the Praefect node, where `psql` is installed
by Omnibus GitLab (`/opt/gitlab/embedded/bin/psql`). If you are using the Omnibus-provided
PostgreSQL you can use `gitlab-psql` on the PostgreSQL node instead:
2020-03-13 15:44:24 +05:30
2021-09-30 23:02:18 +05:30
1. Create a new user `praefect` to be used by Praefect:
2020-03-13 15:44:24 +05:30
2021-09-30 23:02:18 +05:30
```sql
CREATE ROLE praefect WITH LOGIN PASSWORD 'PRAEFECT_SQL_PASSWORD';
2020-04-08 14:13:33 +05:30
```
2020-03-13 15:44:24 +05:30
2021-09-30 23:02:18 +05:30
Replace `PRAEFECT_SQL_PASSWORD` with the strong password you generated in the preparation step.
1. Create a new database `praefect_production` that is owned by `praefect` user.
2020-03-13 15:44:24 +05:30
2020-04-08 14:13:33 +05:30
```sql
2021-09-30 23:02:18 +05:30
CREATE DATABASE praefect_production WITH OWNER praefect ENCODING UTF8;
2020-04-08 14:13:33 +05:30
```
2020-03-13 15:44:24 +05:30
2021-09-30 23:02:18 +05:30
For using Omnibus-provided PgBouncer you need to take the following additional steps. We strongly
recommend using the PostgreSQL that is shipped with Omnibus as the backend. The following
instructions only work on Omnibus-provided PostgreSQL:
2020-03-13 15:44:24 +05:30
2022-10-11 01:57:18 +05:30
1. For Omnibus-provided PgBouncer, you need to use the hash of `praefect` password instead the of the
2021-09-30 23:02:18 +05:30
actual password:
```sql
ALTER ROLE praefect WITH PASSWORD 'md5<PRAEFECT_SQL_PASSWORD_HASH>';
2020-04-08 14:13:33 +05:30
```
2020-01-01 13:55:28 +05:30
2021-09-30 23:02:18 +05:30
Replace `<PRAEFECT_SQL_PASSWORD_HASH>` with the hash of the password you generated in the
2021-10-27 15:23:28 +05:30
preparation step. It is prefixed with `md5` literal.
2021-09-30 23:02:18 +05:30
1. The PgBouncer that is shipped with Omnibus is configured to use [`auth_query`](https://www.pgbouncer.org/config.html#generic-settings)
and uses `pg_shadow_lookup` function. You need to create this function in `praefect_production`
database:
2020-03-13 15:44:24 +05:30
2020-04-08 14:13:33 +05:30
```sql
2021-09-30 23:02:18 +05:30
CREATE OR REPLACE FUNCTION public.pg_shadow_lookup(in i_username text, out username text, out password text) RETURNS record AS $$
BEGIN
SELECT usename, passwd FROM pg_catalog.pg_shadow
WHERE usename = i_username INTO username, password;
RETURN;
END;
$$ LANGUAGE plpgsql SECURITY DEFINER;
REVOKE ALL ON FUNCTION public.pg_shadow_lookup(text) FROM public, pgbouncer;
GRANT EXECUTE ON FUNCTION public.pg_shadow_lookup(text) TO pgbouncer;
2020-04-08 14:13:33 +05:30
```
2020-03-13 15:44:24 +05:30
2020-04-08 14:13:33 +05:30
The database used by Praefect is now configured.
2020-03-13 15:44:24 +05:30
2022-06-21 17:19:12 +05:30
You can now configure Praefect to use the database:
```ruby
2023-05-27 22:25:52 +05:30
praefect['configuration'] = {
# ...
database: {
# ...
host: POSTGRESQL_HOST,
port: 5432,
password: PRAEFECT_SQL_PASSWORD,
dbname: 'praefect_production',
}
}
2022-06-21 17:19:12 +05:30
```
2021-09-04 01:27:46 +05:30
If you see Praefect database errors after configuring PostgreSQL, see
2021-09-30 23:02:18 +05:30
[troubleshooting steps](troubleshooting.md#relation-does-not-exist-errors).
2021-09-04 01:27:46 +05:30
2022-01-26 12:08:38 +05:30
#### Reads distribution caching
Praefect performance can be improved by additionally configuring the `database_direct`
settings:
```ruby
2023-05-27 22:25:52 +05:30
praefect['configuration'] = {
# ...
database: {
# ...
session_pooled: {
# ...
host: POSTGRESQL_HOST,
port: 5432
# Use the following to override parameters of direct database connection.
# Comment out where the parameters are the same for both connections.
user: 'praefect',
password: PRAEFECT_SQL_PASSWORD,
dbname: 'praefect_production',
# sslmode: '...',
# sslcert: '...',
# sslkey: '...',
# sslrootcert: '...',
}
}
}
2022-01-26 12:08:38 +05:30
```
2023-01-13 00:05:48 +05:30
When configured, this connection is automatically used for the
2022-01-26 12:08:38 +05:30
[SQL LISTEN](https://www.postgresql.org/docs/11/sql-listen.html) feature and
allows Praefect to receive notifications from PostgreSQL for cache invalidation.
Verify this feature is working by looking for the following log entry in the Praefect
log:
```plaintext
reads distribution caching is enabled by configuration
```
2021-09-30 23:02:18 +05:30
#### Use PgBouncer
2020-10-24 23:57:45 +05:30
2023-05-27 22:25:52 +05:30
To reduce PostgreSQL resource consumption, you should set up and configure [PgBouncer](https://www.pgbouncer.org/) in
front of the PostgreSQL instance. However, PgBouncer isn't required because
2022-07-23 23:45:48 +05:30
Praefect makes a low number of connections. If you choose to use PgBouncer, you can use the same PgBouncer instance for
both the GitLab application database and the Praefect database.
To configure PgBouncer in front of the PostgreSQL instance, you must point Praefect to PgBouncer by setting database
parameters on Praefect configuration:
2021-02-22 17:27:13 +05:30
2021-09-30 23:02:18 +05:30
```ruby
2023-05-27 22:25:52 +05:30
praefect['configuration'] = {
# ...
database: {
# ...
host: PGBOUNCER_HOST,
port: 6432,
user: 'praefect',
password: PRAEFECT_SQL_PASSWORD,
dbname: 'praefect_production',
# sslmode: '...',
# sslcert: '...',
# sslkey: '...',
# sslrootcert: '...',
}
}
2021-09-30 23:02:18 +05:30
```
2021-02-22 17:27:13 +05:30
2021-09-30 23:02:18 +05:30
Praefect requires an additional connection to the PostgreSQL that supports the
[LISTEN](https://www.postgresql.org/docs/11/sql-listen.html) feature. With PgBouncer
this feature is only available with `session` pool mode (`pool_mode = session`).
It is not supported in `transaction` pool mode (`pool_mode = transaction`).
2021-02-22 17:27:13 +05:30
2022-04-04 11:22:00 +05:30
To configure the additional connection, you must either:
2020-10-24 23:57:45 +05:30
2021-09-30 23:02:18 +05:30
- Configure a new PgBouncer database that uses to the same PostgreSQL database endpoint,
2023-05-27 22:25:52 +05:30
but with different pool mode (`pool_mode = session`).
2022-04-04 11:22:00 +05:30
- Connect Praefect directly to PostgreSQL and bypass PgBouncer.
2020-10-24 23:57:45 +05:30
2022-04-04 11:22:00 +05:30
#### Configure a new PgBouncer database with `pool_mode = session`
2020-10-24 23:57:45 +05:30
2023-05-27 22:25:52 +05:30
You should use PgBouncer with `session` pool mode. You can use the
2022-10-11 01:57:18 +05:30
[bundled PgBouncer](../postgresql/pgbouncer.md) or use an external PgBouncer and
2022-08-27 11:52:29 +05:30
[configure it manually](https://www.pgbouncer.org/config.html).
2020-10-24 23:57:45 +05:30
2022-04-04 11:22:00 +05:30
The following example uses the bundled PgBouncer and sets up two separate connection pools on PostgreSQL host,
2021-09-30 23:02:18 +05:30
one in `session` pool mode and the other in `transaction` pool mode. For this example to work,
2022-04-04 11:22:00 +05:30
you need to prepare PostgreSQL server as documented in [in the setup instructions](#manual-database-setup):
2020-10-24 23:57:45 +05:30
2021-09-30 23:02:18 +05:30
```ruby
pgbouncer['databases'] = {
2021-11-11 11:23:49 +05:30
# Other database configuration including gitlabhq_production
2021-09-30 23:02:18 +05:30
...
praefect_production: {
host: POSTGRESQL_HOST,
# Use `pgbouncer` user to connect to database backend.
user: 'pgbouncer',
password: PGBOUNCER_SQL_PASSWORD_HASH,
pool_mode: 'transaction'
2022-07-16 23:28:13 +05:30
},
2021-09-30 23:02:18 +05:30
praefect_production_direct: {
host: POSTGRESQL_HOST,
# Use `pgbouncer` user to connect to database backend.
user: 'pgbouncer',
password: PGBOUNCER_SQL_PASSWORD_HASH,
dbname: 'praefect_production',
pool_mode: 'session'
},
...
}
2022-07-16 23:28:13 +05:30
# Allow the praefect user to connect to PgBouncer
pgbouncer['users'] = {
'praefect': {
'password': PRAEFECT_SQL_PASSWORD_HASH,
}
}
2021-09-30 23:02:18 +05:30
```
Both `praefect_production` and `praefect_production_direct` use the same database endpoint
(`praefect_production`), but with different pool modes. This translates to the following
`databases` section of PgBouncer:
2020-10-24 23:57:45 +05:30
2021-09-30 23:02:18 +05:30
```ini
[databases]
praefect_production = host=POSTGRESQL_HOST auth_user=pgbouncer pool_mode=transaction
praefect_production_direct = host=POSTGRESQL_HOST auth_user=pgbouncer dbname=praefect_production pool_mode=session
```
Now you can configure Praefect to use PgBouncer for both connections:
```ruby
2023-05-27 22:25:52 +05:30
praefect['configuration'] = {
# ...
database: {
# ...
host: PGBOUNCER_HOST,
port: 6432,
user: 'praefect',
# `PRAEFECT_SQL_PASSWORD` is the plain-text password of
# Praefect user. Not to be confused with `PRAEFECT_SQL_PASSWORD_HASH`.
password: PRAEFECT_SQL_PASSWORD,
dbname: 'praefect_production',
session_pooled: {
# ...
dbname: 'praefect_production_direct',
# There is no need to repeat the following. Parameters of direct
# database connection will fall back to the values above.
#
# host: PGBOUNCER_HOST,
# port: 6432,
# user: 'praefect',
# password: PRAEFECT_SQL_PASSWORD,
},
},
}
2021-09-30 23:02:18 +05:30
```
With this configuration, Praefect uses PgBouncer for both connection types.
2020-10-24 23:57:45 +05:30
2021-02-22 17:27:13 +05:30
NOTE:
2021-09-30 23:02:18 +05:30
Omnibus GitLab handles the authentication requirements (using `auth_query`), but if you are preparing
your databases manually and configuring an external PgBouncer, you must include `praefect` user and
its password in the file used by PgBouncer. For example, `userlist.txt` if the [`auth_file`](https://www.pgbouncer.org/config.html#auth_file)
configuration option is set. For more details, consult the PgBouncer documentation.
2020-10-24 23:57:45 +05:30
2022-04-04 11:22:00 +05:30
#### Configure Praefect to connect directly to PostgreSQL
2023-05-27 22:25:52 +05:30
As an alternative to configuring PgBouncer with `session` pool mode, Praefect can be configured to use different
connection parameters for direct access to PostgreSQL. This connection supports the `LISTEN` feature.
2022-04-04 11:22:00 +05:30
An example of Praefect configuration that bypasses PgBouncer and directly connects to PostgreSQL:
```ruby
2023-05-27 22:25:52 +05:30
praefect['configuration'] = {
# ...
database: {
# ...
session_pooled: {
# ...
host: POSTGRESQL_HOST,
port: 5432,
# Use the following to override parameters of direct database connection.
# Comment out where the parameters are the same for both connections.
#
user: 'praefect',
password: PRAEFECT_SQL_PASSWORD,
dbname: 'praefect_production',
# sslmode: '...',
# sslcert: '...',
# sslkey: '...',
# sslrootcert: '...',
},
},
}
2022-04-04 11:22:00 +05:30
```
2020-04-08 14:13:33 +05:30
### Praefect
2019-12-21 20:55:43 +05:30
2020-11-24 15:15:51 +05:30
> [Introduced](https://gitlab.com/gitlab-org/gitaly/-/issues/2634) in GitLab 13.4, Praefect nodes can no longer be designated as `primary`.
2021-09-04 01:27:46 +05:30
If there are multiple Praefect nodes:
2022-03-02 08:16:31 +05:30
1. Designate one node as the deploy node, and configure it using the following steps.
1. Complete the following steps for each additional node.
2020-11-24 15:15:51 +05:30
2021-02-22 17:27:13 +05:30
To complete this section you need a [configured PostgreSQL server](#postgresql), including:
2020-03-13 15:44:24 +05:30
2021-11-11 11:23:49 +05:30
WARNING:
2020-04-08 14:13:33 +05:30
Praefect should be run on a dedicated node. Do not run Praefect on the
application server, or a Gitaly node.
2019-12-26 22:10:19 +05:30
2021-09-30 23:02:18 +05:30
On the **Praefect** node:
2019-12-26 22:10:19 +05:30
2020-04-08 14:13:33 +05:30
1. Disable all other services by editing `/etc/gitlab/gitlab.rb`:
2020-03-13 15:44:24 +05:30
2022-07-16 23:28:13 +05:30
<!--
Updates to example must be made at:
- https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/administration/gitaly/praefect.md
- all reference architecture pages
-->
2020-04-08 14:13:33 +05:30
```ruby
2022-07-16 23:28:13 +05:30
# Avoid running unnecessary services on the Praefect server
gitaly['enable'] = false
2020-04-08 14:13:33 +05:30
postgresql['enable'] = false
redis['enable'] = false
nginx['enable'] = false
2020-05-24 23:13:21 +05:30
puma['enable'] = false
2020-04-08 14:13:33 +05:30
sidekiq['enable'] = false
gitlab_workhorse['enable'] = false
2022-07-16 23:28:13 +05:30
prometheus['enable'] = false
alertmanager['enable'] = false
grafana['enable'] = false
gitlab_exporter['enable'] = false
gitlab_kas['enable'] = false
2020-04-08 14:13:33 +05:30
# Enable only the Praefect service
praefect['enable'] = true
2022-07-16 23:28:13 +05:30
# Prevent database migrations from running on upgrade automatically
2021-09-04 01:27:46 +05:30
praefect['auto_migrate'] = false
2022-07-16 23:28:13 +05:30
gitlab_rails['auto_migrate'] = false
2020-04-08 14:13:33 +05:30
```
1. Configure **Praefect** to listen on network interfaces by editing
`/etc/gitlab/gitlab.rb`:
```ruby
2023-05-27 22:25:52 +05:30
praefect['configuration'] = {
# ...
listen_addr: '0.0.0.0:2305',
}
2022-03-02 08:16:31 +05:30
```
2020-04-08 14:13:33 +05:30
2022-03-02 08:16:31 +05:30
1. Configure Prometheus metrics by editing
`/etc/gitlab/gitlab.rb`:
```ruby
2023-05-27 22:25:52 +05:30
praefect['configuration'] = {
# ...
#
# Enable Prometheus metrics access to Praefect. You must use firewalls
# to restrict access to this address/port.
# The default metrics endpoint is /metrics
prometheus_listen_addr: '0.0.0.0:9652',
# Some metrics run queries against the database. Enabling separate database metrics allows
# these metrics to be collected when the metrics are
# scraped on a separate /db_metrics endpoint.
prometheus_exclude_database_from_default_metrics: true,
}
2020-04-08 14:13:33 +05:30
```
2023-05-27 22:25:52 +05:30
1. Configure a strong authentication token for **Praefect** by editing
`/etc/gitlab/gitlab.rb`, which is needed by clients outside the cluster
2021-02-22 17:27:13 +05:30
(like GitLab Shell) to communicate with the Praefect cluster:
2020-04-08 14:13:33 +05:30
```ruby
2023-05-27 22:25:52 +05:30
praefect['configuration'] = {
# ...
auth: {
# ...
token: 'PRAEFECT_EXTERNAL_TOKEN',
},
}
2020-04-08 14:13:33 +05:30
```
2021-09-30 23:02:18 +05:30
1. Configure **Praefect** to [connect to the PostgreSQL database](#postgresql). We
highly recommend using [PgBouncer](#use-pgbouncer) as well.
2020-04-08 14:13:33 +05:30
If you want to use a TLS client certificate, the options below can be used:
```ruby
2023-05-27 22:25:52 +05:30
praefect['configuration'] = {
# ...
database: {
# ...
#
# Connect to PostgreSQL using a TLS client certificate
# sslcert: '/path/to/client-cert',
# sslkey: '/path/to/client-key',
#
# Trust a custom certificate authority
# sslrootcert: '/path/to/rootcert',
},
}
2020-04-08 14:13:33 +05:30
```
2021-02-22 17:27:13 +05:30
By default, Praefect refuses to make an unencrypted connection to
2020-04-08 14:13:33 +05:30
PostgreSQL. You can override this by uncommenting the following line:
```ruby
2023-05-27 22:25:52 +05:30
praefect['configuration'] = {
# ...
database: {
# ...
# sslmode: 'disable',
},
}
2020-04-08 14:13:33 +05:30
```
1. Configure the **Praefect** cluster to connect to each Gitaly node in the
cluster by editing `/etc/gitlab/gitlab.rb`.
2020-07-28 23:09:34 +05:30
The virtual storage's name must match the configured storage name in GitLab
configuration. In a later step, we configure the storage name as `default`
so we use `default` here as well. This cluster has three Gitaly nodes `gitaly-1`,
2021-02-22 17:27:13 +05:30
`gitaly-2`, and `gitaly-3`, which are intended to be replicas of each other.
2020-07-28 23:09:34 +05:30
2021-02-22 17:27:13 +05:30
WARNING:
2020-07-28 23:09:34 +05:30
If you have data on an already existing storage called
`default`, you should configure the virtual storage with another name and
2022-07-23 23:45:48 +05:30
[migrate the data to the Gitaly Cluster storage](index.md#migrate-to-gitaly-cluster)
2020-07-28 23:09:34 +05:30
afterwards.
2020-04-08 14:13:33 +05:30
2021-02-22 17:27:13 +05:30
Replace `PRAEFECT_INTERNAL_TOKEN` with a strong secret, which is used by
2020-04-08 14:13:33 +05:30
Praefect when communicating with Gitaly nodes in the cluster. This token is
distinct from the `PRAEFECT_EXTERNAL_TOKEN`.
2021-03-11 19:13:27 +05:30
Replace `GITALY_HOST_*` with the IP or host address of the each Gitaly node.
2020-04-08 14:13:33 +05:30
More Gitaly nodes can be added to the cluster to increase the number of
replicas. More clusters can also be added for very large GitLab instances.
2021-03-11 19:13:27 +05:30
NOTE:
When adding additional Gitaly nodes to a virtual storage, all storage names
2023-05-27 22:25:52 +05:30
in that virtual storage must be unique. Additionally, all Gitaly node
2021-03-11 19:13:27 +05:30
addresses referenced in the Praefect configuration must be unique.
2020-04-08 14:13:33 +05:30
```ruby
# Name of storage hash must match storage name in git_data_dirs on GitLab
2023-05-27 22:25:52 +05:30
# server ('default') and in gitaly['configuration'][:storage][INDEX][:name] on Gitaly nodes ('gitaly-1')
praefect['configuration'] = {
# ...
virtual_storage: [
{
# ...
name: 'default',
node: [
{
storage: 'gitaly-1',
address: 'tcp://GITALY_HOST_1:8075',
token: 'PRAEFECT_INTERNAL_TOKEN'
},
{
storage: 'gitaly-2',
address: 'tcp://GITALY_HOST_2:8075',
token: 'PRAEFECT_INTERNAL_TOKEN'
},
{
storage: 'gitaly-3',
address: 'tcp://GITALY_HOST_3:8075',
token: 'PRAEFECT_INTERNAL_TOKEN'
},
],
2021-03-11 19:13:27 +05:30
},
2023-05-27 22:25:52 +05:30
],
2020-04-08 14:13:33 +05:30
}
```
2023-01-13 00:05:48 +05:30
1. Enable [distribution of reads](index.md#distributed-reads).
2020-07-28 23:09:34 +05:30
2021-11-18 22:05:49 +05:30
1. Save the changes to `/etc/gitlab/gitlab.rb` and
[reconfigure Praefect](../restart_gitlab.md#omnibus-gitlab-reconfigure):
2021-09-04 01:27:46 +05:30
```shell
gitlab-ctl reconfigure
```
1. For:
- The "deploy node":
2022-03-02 08:16:31 +05:30
1. Enable Praefect database auto-migration again by setting `praefect['auto_migrate'] = true` in
2021-09-04 01:27:46 +05:30
`/etc/gitlab/gitlab.rb`.
1. To ensure database migrations are only run during reconfigure and not automatically on
upgrade, run:
```shell
sudo touch /etc/gitlab/skip-auto-reconfigure
```
- The other nodes, you can leave the settings as they are. Though
`/etc/gitlab/skip-auto-reconfigure` isn't required, you may want to set it to prevent GitLab
running reconfigure automatically when running commands such as `apt-get update`. This way any
additional configuration changes can be done and then reconfigure can be run manually.
2021-11-18 22:05:49 +05:30
1. Save the changes to `/etc/gitlab/gitlab.rb` and
[reconfigure Praefect](../restart_gitlab.md#omnibus-gitlab-reconfigure):
2020-04-22 19:07:51 +05:30
2020-05-24 23:13:21 +05:30
```shell
gitlab-ctl reconfigure
2020-04-22 19:07:51 +05:30
```
2022-10-11 01:57:18 +05:30
1. To ensure that Praefect
2022-08-27 11:52:29 +05:30
[has updated its Prometheus listen address](https://gitlab.com/gitlab-org/gitaly/-/issues/2734),
2021-11-18 22:05:49 +05:30
[restart Praefect](../restart_gitlab.md#omnibus-gitlab-restart):
2020-04-22 19:07:51 +05:30
2020-05-24 23:13:21 +05:30
```shell
gitlab-ctl restart praefect
```
2020-04-22 19:07:51 +05:30
2020-05-24 23:13:21 +05:30
1. Verify that Praefect can reach PostgreSQL:
2020-04-22 19:07:51 +05:30
2020-05-24 23:13:21 +05:30
```shell
sudo -u git /opt/gitlab/embedded/bin/praefect -config /var/opt/gitlab/praefect/config.toml sql-ping
```
2020-04-22 19:07:51 +05:30
2020-05-24 23:13:21 +05:30
If the check fails, make sure you have followed the steps correctly. If you
edit `/etc/gitlab/gitlab.rb`, remember to run `sudo gitlab-ctl reconfigure`
again before trying the `sql-ping` command.
2020-04-22 19:07:51 +05:30
2022-04-04 11:22:00 +05:30
#### Enable TLS support
2020-07-28 23:09:34 +05:30
Praefect supports TLS encryption. To communicate with a Praefect instance that listens
for secure connections, you must:
2022-04-04 11:22:00 +05:30
- Ensure Gitaly is [configured for TLS](configure_gitaly.md#enable-tls-support) and use a `tls://` URL scheme in the `gitaly_address`
of the corresponding storage entry in the GitLab configuration.
2020-07-28 23:09:34 +05:30
- Bring your own certificates because this isn't provided automatically. The certificate
corresponding to each Praefect server must be installed on that Praefect server.
Additionally the certificate, or its certificate authority, must be installed on all Gitaly servers
and on all Praefect clients that communicate with it following the procedure described in
2023-07-09 08:55:56 +05:30
[GitLab custom certificate configuration](https://docs.gitlab.com/omnibus/settings/ssl/index.html#install-custom-public-certificates) (and repeated below).
2020-07-28 23:09:34 +05:30
Note the following:
2022-07-23 23:45:48 +05:30
- The certificate must specify the address you use to access the Praefect server. You must add the hostname or IP
address as a Subject Alternative Name to the certificate.
2022-04-04 11:22:00 +05:30
- When running Praefect sub-commands such as `dial-nodes` and `list-untracked-repositories` from the command line with
[Gitaly TLS enabled](configure_gitaly.md#enable-tls-support), you must set the `SSL_CERT_DIR` or `SSL_CERT_FILE`
2022-05-07 20:08:51 +05:30
environment variable so that the Gitaly certificate is trusted. For example:
2022-04-04 11:22:00 +05:30
```shell
2022-06-21 17:19:12 +05:30
sudo SSL_CERT_DIR=/etc/gitlab/trusted-certs /opt/gitlab/embedded/bin/praefect -config /var/opt/gitlab/praefect/config.toml dial-nodes
2022-04-04 11:22:00 +05:30
```
2020-07-28 23:09:34 +05:30
- You can configure Praefect servers with both an unencrypted listening address
`listen_addr` and an encrypted listening address `tls_listen_addr` at the same time.
This allows you to do a gradual transition from unencrypted to encrypted traffic, if
necessary.
2023-05-27 22:25:52 +05:30
To disable the unencrypted listener, set:
```ruby
praefect['configuration'] = {
# ...
listen_addr: nil,
}
```
2022-07-23 23:45:48 +05:30
2020-07-28 23:09:34 +05:30
To configure Praefect with TLS:
**For Omnibus GitLab**
1. Create certificates for Praefect servers.
2021-02-22 17:27:13 +05:30
2020-07-28 23:09:34 +05:30
1. On the Praefect servers, create the `/etc/gitlab/ssl` directory and copy your key
and certificate there:
```shell
sudo mkdir -p /etc/gitlab/ssl
sudo chmod 755 /etc/gitlab/ssl
sudo cp key.pem cert.pem /etc/gitlab/ssl/
sudo chmod 644 key.pem cert.pem
```
1. Edit `/etc/gitlab/gitlab.rb` and add:
```ruby
2023-05-27 22:25:52 +05:30
praefect['configuration'] = {
# ...
tls_listen_addr: '0.0.0.0:3305',
tls: {
# ...
certificate_path: '/etc/gitlab/ssl/cert.pem',
key_path: '/etc/gitlab/ssl/key.pem',
},
}
2020-07-28 23:09:34 +05:30
```
2021-02-22 17:27:13 +05:30
1. Save the file and [reconfigure](../restart_gitlab.md#omnibus-gitlab-reconfigure).
2020-07-28 23:09:34 +05:30
1. On the Praefect clients (including each Gitaly server), copy the certificates,
or their certificate authority, into `/etc/gitlab/trusted-certs`:
```shell
sudo cp cert.pem /etc/gitlab/trusted-certs/
```
1. On the Praefect clients (except Gitaly servers), edit `git_data_dirs` in
`/etc/gitlab/gitlab.rb` as follows:
```ruby
git_data_dirs({
2021-02-22 17:27:13 +05:30
"default" => {
2022-04-04 11:22:00 +05:30
"gitaly_address" => 'tls://PRAEFECT_LOADBALANCER_HOST:3305',
2021-02-22 17:27:13 +05:30
"gitaly_token" => 'PRAEFECT_EXTERNAL_TOKEN'
}
2020-07-28 23:09:34 +05:30
})
```
1. Save the file and [reconfigure GitLab](../restart_gitlab.md#omnibus-gitlab-reconfigure).
**For installations from source**
1. Create certificates for Praefect servers.
1. On the Praefect servers, create the `/etc/gitlab/ssl` directory and copy your key and certificate
there:
```shell
sudo mkdir -p /etc/gitlab/ssl
sudo chmod 755 /etc/gitlab/ssl
sudo cp key.pem cert.pem /etc/gitlab/ssl/
sudo chmod 644 key.pem cert.pem
```
1. On the Praefect clients (including each Gitaly server), copy the certificates,
or their certificate authority, into the system trusted certificates:
```shell
sudo cp cert.pem /usr/local/share/ca-certificates/praefect.crt
sudo update-ca-certificates
```
1. On the Praefect clients (except Gitaly servers), edit `storages` in
`/home/git/gitlab/config/gitlab.yml` as follows:
```yaml
gitlab:
repositories:
storages:
default:
2021-09-30 23:02:18 +05:30
gitaly_address: tls://PRAEFECT_LOADBALANCER_HOST:3305
2021-01-03 14:25:43 +05:30
path: /some/local/path
2020-07-28 23:09:34 +05:30
```
2021-02-22 17:27:13 +05:30
NOTE:
2021-01-03 14:25:43 +05:30
`/some/local/path` should be set to a local folder that exists, however no
2021-02-22 17:27:13 +05:30
data is stored in this folder. This requirement is scheduled to be removed when
2020-07-28 23:09:34 +05:30
[this issue](https://gitlab.com/gitlab-org/gitaly/-/issues/1282) is resolved.
1. Save the file and [restart GitLab](../restart_gitlab.md#installations-from-source).
1. Copy all Praefect server certificates, or their certificate authority, to the system
2021-02-22 17:27:13 +05:30
trusted certificates on each Gitaly server so the Praefect server trusts the
2020-07-28 23:09:34 +05:30
certificate when called by Gitaly servers:
```shell
sudo cp cert.pem /usr/local/share/ca-certificates/praefect.crt
sudo update-ca-certificates
```
1. Edit `/home/git/praefect/config.toml` and add:
```toml
tls_listen_addr = '0.0.0.0:3305'
[tls]
certificate_path = '/etc/gitlab/ssl/cert.pem'
key_path = '/etc/gitlab/ssl/key.pem'
```
1. Save the file and [restart GitLab](../restart_gitlab.md#installations-from-source).
2023-05-27 22:25:52 +05:30
#### Service discovery
> [Introduced](https://gitlab.com/groups/gitlab-org/-/epics/8971) in GitLab 15.10.
Prerequisites:
- A DNS server.
GitLab uses service discovery to retrieve a list of Praefect hosts. Service
discovery involves periodic checks of a DNS A or AAAA record, with the IPs
retrieved from the record serving as the addresses of the target nodes.
Praefect does not support service discovery by SRV record.
By default, the minimum time between checks is 5 minutes, regardless of the
records' TTLs. Praefect does not support customizing this interval. When clients
receive an update, they:
- Establish new connections to the new IP addresses.
- Keep existing connections to intact IP addresses.
- Drop connections to removed IP addresses.
In-flight requests on to-be-removed connections are still handled until they
finish. Workhorse has a 10-minute timeout, while other clients do not specify a
graceful timeout.
The DNS server should return all IP addresses instead of load-balancing itself.
Clients can distribute requests to IP addresses in a round-robin fashion.
Before updating client configuration, ensure that DNS service discovery works
correctly. It should return the list of IP addresses correctly. `dig` is a good
tool to use to verify.
```console
dig A praefect.service.consul @127.0.0.1
; <<>> DiG 9.10.6 <<>> A praefect.service.consul @127.0.0.1
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 29210
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 3, AUTHORITY: 0, ADDITIONAL: 1
;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 4096
;; QUESTION SECTION:
;praefect.service.consul. IN A
;; ANSWER SECTION:
praefect.service.consul. 0 IN A 10.0.0.3
praefect.service.consul. 0 IN A 10.0.0.2
praefect.service.consul. 0 IN A 10.0.0.1
;; Query time: 0 msec
;; SERVER: ::1#53(::1)
;; WHEN: Wed Dec 14 12:53:58 +07 2022
;; MSG SIZE rcvd: 86
```
##### Configure service discovery
By default, Praefect delegates DNS resolution to the operating system. In such
cases, the Gitaly address can be set in either of these formats:
- `dns:[host]:[port]`
- `dns:///[host]:[port]` (note the three slashes)
You can also appoint an authoritative name server by setting it in this format:
- `dns://[authority_host]:[authority_port]/[host]:[port]`
::Tabs
:::TabTitle Linux package (Omnibus)
1. Edit `/etc/gitlab/gitlab.rb` and add:
```ruby
praefect['consul_service_name'] = 'praefect'
```
1. Save the file and [reconfigure](../restart_gitlab.md#omnibus-gitlab-reconfigure).
1. On the Praefect clients (except Gitaly servers), edit `git_data_dirs` in
`/etc/gitlab/gitlab.rb` as follows. Replace `PRAEFECT_SERVICE_DISCOVERY_ADDRESS`
with Praefect service discovery address, such as `praefect.service.consul`.
```ruby
git_data_dirs({
"default" => {
"gitaly_address" => 'dns:PRAEFECT_SERVICE_DISCOVERY_ADDRESS:2305',
"gitaly_token" => 'PRAEFECT_EXTERNAL_TOKEN'
}
})
```
1. Save the file and [reconfigure GitLab](../restart_gitlab.md#omnibus-gitlab-reconfigure).
:::TabTitle Self-compiled (source)
1. Install a DNS service discovery service. Register all Praefect nodes with the service.
1. On the Praefect clients (except Gitaly servers), edit `storages` in
`/home/git/gitlab/config/gitlab.yml` as follows:
```yaml
gitlab:
repositories:
storages:
default:
gitaly_address: dns:PRAEFECT_SERVICE_DISCOVERY_ADDRESS:2305
path: /some/local/path
```
NOTE:
`/some/local/path` should be set to a local folder that exists, however no
data is stored in this folder. [Issue 375254](https://gitlab.com/gitlab-org/gitlab/-/issues/375254)
proposes to remove this requirement.
1. Save the file and [restart GitLab](../restart_gitlab.md#installations-from-source).
::EndTabs
2020-04-08 14:13:33 +05:30
### Gitaly
2021-02-22 17:27:13 +05:30
NOTE:
2020-07-28 23:09:34 +05:30
Complete these steps for **each** Gitaly node.
2020-04-08 14:13:33 +05:30
2021-02-22 17:27:13 +05:30
To complete this section you need:
2020-04-08 14:13:33 +05:30
- [Configured Praefect node](#praefect)
- 3 (or more) servers, with GitLab installed, to be configured as Gitaly nodes.
These should be dedicated nodes, do not run other services on these nodes.
Every Gitaly server assigned to the Praefect cluster needs to be configured. The
2023-04-23 21:23:45 +05:30
configuration is the same as a standard [standalone Gitaly server](index.md),
2020-04-08 14:13:33 +05:30
except:
2021-02-22 17:27:13 +05:30
- The storage names are exposed to Praefect, not GitLab
- The secret token is shared with Praefect, not GitLab
2020-04-08 14:13:33 +05:30
The configuration of all Gitaly nodes in the Praefect cluster can be identical,
because we rely on Praefect to route operations correctly.
Particular attention should be shown to:
2023-05-27 22:25:52 +05:30
- The `gitaly['configuration'][:auth][:token]` configured in this section must match the `token`
value under `praefect['configuration'][:virtual_storage][<index>][:node][<index>][:token]` on the Praefect node. This value was
set in the [previous section](#praefect). This document uses the placeholder `PRAEFECT_INTERNAL_TOKEN` throughout.
- The storage names in `gitaly['configuration'][:storage]` configured in this section must match the
storage names under `praefect['configuration'][:virtual_storage]` on the Praefect node. This
2020-04-08 14:13:33 +05:30
was set in the [previous section](#praefect). This document uses `gitaly-1`,
`gitaly-2`, and `gitaly-3` as Gitaly storage names.
2021-11-18 22:05:49 +05:30
For more information on Gitaly server configuration, see our
[Gitaly documentation](configure_gitaly.md#configure-gitaly-servers).
2020-04-08 14:13:33 +05:30
1. SSH into the **Gitaly** node and login as root:
```shell
sudo -i
```
1. Disable all other services by editing `/etc/gitlab/gitlab.rb`:
```ruby
2023-06-20 00:43:36 +05:30
# Disable all other services on the Gitaly node
2020-04-08 14:13:33 +05:30
postgresql['enable'] = false
redis['enable'] = false
nginx['enable'] = false
grafana['enable'] = false
2020-05-24 23:13:21 +05:30
puma['enable'] = false
2020-04-08 14:13:33 +05:30
sidekiq['enable'] = false
gitlab_workhorse['enable'] = false
prometheus_monitoring['enable'] = false
2022-08-13 15:12:31 +05:30
gitlab_kas['enable'] = false
2020-04-08 14:13:33 +05:30
2020-06-23 00:09:42 +05:30
# Enable only the Gitaly service
2020-04-08 14:13:33 +05:30
gitaly['enable'] = true
2020-06-23 00:09:42 +05:30
# Enable Prometheus if needed
prometheus['enable'] = true
2022-03-02 08:16:31 +05:30
# Disable database migrations to prevent database connections during 'gitlab-ctl reconfigure'
2020-04-08 14:13:33 +05:30
gitlab_rails['auto_migrate'] = false
```
1. Configure **Gitaly** to listen on network interfaces by editing
`/etc/gitlab/gitlab.rb`:
```ruby
2023-05-27 22:25:52 +05:30
gitaly['configuration'] = {
# ...
#
# Make Gitaly accept connections on all network interfaces.
# Use firewalls to restrict access to this address/port.
listen_addr: '0.0.0.0:8075',
# Enable Prometheus metrics access to Gitaly. You must use firewalls
# to restrict access to this address/port.
prometheus_listen_addr: '0.0.0.0:9236',
}
2020-04-08 14:13:33 +05:30
```
1. Configure a strong `auth_token` for **Gitaly** by editing
2023-05-27 22:25:52 +05:30
`/etc/gitlab/gitlab.rb`, which is needed by clients to communicate with
2021-02-22 17:27:13 +05:30
this Gitaly nodes. Typically, this token is the same for all Gitaly
2020-04-08 14:13:33 +05:30
nodes.
```ruby
2023-05-27 22:25:52 +05:30
gitaly['configuration'] = {
# ...
auth: {
# ...
token: 'PRAEFECT_INTERNAL_TOKEN',
},
}
2020-04-08 14:13:33 +05:30
```
2020-03-13 15:44:24 +05:30
2021-04-29 21:17:54 +05:30
1. Configure the GitLab Shell secret token, which is needed for `git push` operations. Either:
2020-04-08 14:13:33 +05:30
2021-04-29 21:17:54 +05:30
- Method 1:
2020-04-08 14:13:33 +05:30
2021-04-29 21:17:54 +05:30
1. Copy `/etc/gitlab/gitlab-secrets.json` from the Gitaly client to same path on the Gitaly
servers and any other Gitaly clients.
1. [Reconfigure GitLab](../restart_gitlab.md#omnibus-gitlab-reconfigure) on Gitaly servers.
2020-04-08 14:13:33 +05:30
2021-04-29 21:17:54 +05:30
- Method 2:
1. Edit `/etc/gitlab/gitlab.rb`.
1. Replace `GITLAB_SHELL_SECRET_TOKEN` with the real secret.
```ruby
gitlab_shell['secret_token'] = 'GITLAB_SHELL_SECRET_TOKEN'
```
2022-10-11 01:57:18 +05:30
1. Configure an `internal_api_url`, which is also needed for `git push` operations:
2021-04-29 21:17:54 +05:30
```ruby
2020-04-08 14:13:33 +05:30
# Configure the gitlab-shell API callback URL. Without this, `git push` will
# fail. This can be your front door GitLab URL or an internal load balancer.
2020-11-24 15:15:51 +05:30
# Examples: 'https://gitlab.example.com', 'http://1.2.3.4'
2020-04-22 19:07:51 +05:30
gitlab_rails['internal_api_url'] = 'http://GITLAB_HOST'
2020-04-08 14:13:33 +05:30
```
2023-05-27 22:25:52 +05:30
1. Configure the storage location for Git data by setting `gitaly['configuration'][:storage]` in
2020-04-08 14:13:33 +05:30
`/etc/gitlab/gitlab.rb`. Each Gitaly node should have a unique storage name
2020-05-24 23:13:21 +05:30
(such as `gitaly-1`).
2020-04-08 14:13:33 +05:30
2023-05-27 22:25:52 +05:30
Instead of configuring `gitaly['configuration'][:storage]` uniquely for each Gitaly node, it is
2020-04-08 14:13:33 +05:30
often easier to have include the configuration for all Gitaly nodes on every
2023-05-27 22:25:52 +05:30
Gitaly node. You can do this because the Praefect `virtual_storage`
2020-05-24 23:13:21 +05:30
configuration maps each storage name (such as `gitaly-1`) to a specific node, and
2020-04-08 14:13:33 +05:30
requests are routed accordingly. This means every Gitaly node in your fleet
can share the same configuration.
```ruby
# You can include the data dirs for all nodes in the same config, because
# Praefect will only route requests according to the addresses provided in the
# prior step.
2023-05-27 22:25:52 +05:30
gitaly['configuration'] = {
# ...
storage: [
{
name: 'gitaly-1',
path: '/var/opt/gitlab/git-data',
},
{
name: 'gitaly-2',
path: '/var/opt/gitlab/git-data',
},
{
name: 'gitaly-3',
path: '/var/opt/gitlab/git-data',
},
],
}
2020-04-08 14:13:33 +05:30
```
2021-11-18 22:05:49 +05:30
1. Save the changes to `/etc/gitlab/gitlab.rb` and
[reconfigure Gitaly](../restart_gitlab.md#omnibus-gitlab-reconfigure):
2020-04-08 14:13:33 +05:30
```shell
gitlab-ctl reconfigure
```
2022-10-11 01:57:18 +05:30
1. To ensure that Gitaly
2022-08-27 11:52:29 +05:30
[has updated its Prometheus listen address](https://gitlab.com/gitlab-org/gitaly/-/issues/2734),
2021-11-18 22:05:49 +05:30
[restart Gitaly](../restart_gitlab.md#omnibus-gitlab-restart):
2020-04-08 14:13:33 +05:30
```shell
gitlab-ctl restart gitaly
```
2020-04-22 19:07:51 +05:30
**The steps above must be completed for each Gitaly node!**
2020-04-08 14:13:33 +05:30
2021-09-04 01:27:46 +05:30
After all Gitaly nodes are configured, run the Praefect connection
2020-03-13 15:44:24 +05:30
checker to verify Praefect can connect to all Gitaly servers in the Praefect
2021-02-22 17:27:13 +05:30
configuration.
2020-03-13 15:44:24 +05:30
2020-11-24 15:15:51 +05:30
1. SSH into each **Praefect** node and run the Praefect connection checker:
2020-03-13 15:44:24 +05:30
2020-04-08 14:13:33 +05:30
```shell
sudo /opt/gitlab/embedded/bin/praefect -config /var/opt/gitlab/praefect/config.toml dial-nodes
```
2019-12-21 20:55:43 +05:30
2020-05-24 23:13:21 +05:30
### Load Balancer
2020-04-22 19:07:51 +05:30
2021-03-11 19:13:27 +05:30
In a fault-tolerant Gitaly configuration, a load balancer is needed to route
2020-05-24 23:13:21 +05:30
internal traffic from the GitLab application to the Praefect nodes. The
specifics on which load balancer to use or the exact configuration is beyond the
scope of the GitLab documentation.
2020-04-22 19:07:51 +05:30
2021-02-22 17:27:13 +05:30
NOTE:
2020-10-24 23:57:45 +05:30
The load balancer must be configured to accept traffic from the Gitaly nodes in
2023-06-20 00:43:36 +05:30
addition to the GitLab nodes.
2020-10-24 23:57:45 +05:30
2021-04-29 21:17:54 +05:30
We hope that if you're managing fault-tolerant systems like GitLab, you have a load balancer
2020-05-24 23:13:21 +05:30
of choice already. Some examples include [HAProxy](https://www.haproxy.org/)
(open-source), [Google Internal Load Balancer](https://cloud.google.com/load-balancing/docs/internal/),
[AWS Elastic Load Balancer](https://aws.amazon.com/elasticloadbalancing/), F5
2021-02-22 17:27:13 +05:30
Big-IP LTM, and Citrix Net Scaler. This documentation outlines what ports
2020-05-24 23:13:21 +05:30
and protocols you need configure.
2020-04-22 19:07:51 +05:30
2022-03-02 08:16:31 +05:30
NOTE:
2023-05-27 22:25:52 +05:30
You should use the equivalent of HAProxy `leastconn` load-balancing strategy because long-running operations (for
example, clones) keep some connections open for extended periods.
2021-12-11 22:18:48 +05:30
2020-05-24 23:13:21 +05:30
| LB Port | Backend Port | Protocol |
2021-02-22 17:27:13 +05:30
|:--------|:-------------|:---------|
2020-05-24 23:13:21 +05:30
| 2305 | 2305 | TCP |
2020-04-22 19:07:51 +05:30
2020-04-08 14:13:33 +05:30
### GitLab
2020-03-13 15:44:24 +05:30
2021-02-22 17:27:13 +05:30
To complete this section you need:
2019-12-26 22:10:19 +05:30
2020-04-08 14:13:33 +05:30
- [Configured Praefect node](#praefect)
- [Configured Gitaly nodes](#gitaly)
2020-03-13 15:44:24 +05:30
2020-04-08 14:13:33 +05:30
The Praefect cluster needs to be exposed as a storage location to the GitLab
2023-05-27 22:25:52 +05:30
application, which is done by updating the `git_data_dirs`.
2020-04-08 14:13:33 +05:30
Particular attention should be shown to:
- the storage name added to `git_data_dirs` in this section must match the
2023-05-27 22:25:52 +05:30
storage name under `praefect['configuration'][:virtual_storage]` on the Praefect nodes. This
2020-04-08 14:13:33 +05:30
was set in the [Praefect](#praefect) section of this guide. This document uses
2020-11-24 15:15:51 +05:30
`default` as the Praefect storage name.
2020-04-08 14:13:33 +05:30
1. SSH into the **GitLab** node and login as root:
```shell
sudo -i
```
2020-05-24 23:13:21 +05:30
1. Configure the `external_url` so that files could be served by GitLab
by proper endpoint access by editing `/etc/gitlab/gitlab.rb`:
2021-02-22 17:27:13 +05:30
You need to replace `GITLAB_SERVER_URL` with the real external facing
2020-05-24 23:13:21 +05:30
URL on which current GitLab instance is serving:
```ruby
external_url 'GITLAB_SERVER_URL'
```
2021-02-22 17:27:13 +05:30
1. Disable the default Gitaly service running on the GitLab host. It isn't needed
because GitLab connects to the configured cluster.
2020-07-28 23:09:34 +05:30
2021-02-22 17:27:13 +05:30
WARNING:
2020-07-28 23:09:34 +05:30
If you have existing data stored on the default Gitaly storage,
2023-04-23 21:23:45 +05:30
you should [migrate the data to your Gitaly Cluster storage](index.md#migrate-to-gitaly-cluster)
2020-11-24 15:15:51 +05:30
first.
2020-07-28 23:09:34 +05:30
```ruby
gitaly['enable'] = false
```
2020-04-08 14:13:33 +05:30
1. Add the Praefect cluster as a storage location by editing
`/etc/gitlab/gitlab.rb`.
2021-02-22 17:27:13 +05:30
You need to replace:
2020-04-08 14:13:33 +05:30
2021-09-30 23:02:18 +05:30
- `PRAEFECT_LOADBALANCER_HOST` with the IP address or hostname of the load
2020-05-24 23:13:21 +05:30
balancer.
2020-04-08 14:13:33 +05:30
- `PRAEFECT_EXTERNAL_TOKEN` with the real secret
2022-04-04 11:22:00 +05:30
If you are using TLS:
- The `gitaly_address` should begin with `tls://` instead.
- The port should be changed to `3305`.
2021-02-22 17:27:13 +05:30
2020-04-08 14:13:33 +05:30
```ruby
git_data_dirs({
"default" => {
2021-09-30 23:02:18 +05:30
"gitaly_address" => "tcp://PRAEFECT_LOADBALANCER_HOST:2305",
2020-04-08 14:13:33 +05:30
"gitaly_token" => 'PRAEFECT_EXTERNAL_TOKEN'
}
})
```
2021-04-29 21:17:54 +05:30
1. Configure the GitLab Shell secret token so that callbacks from Gitaly nodes during a `git push`
are properly authenticated. Either:
2020-04-08 14:13:33 +05:30
2021-04-29 21:17:54 +05:30
- Method 1:
2020-04-08 14:13:33 +05:30
2021-04-29 21:17:54 +05:30
1. Copy `/etc/gitlab/gitlab-secrets.json` from the Gitaly client to same path on the Gitaly
servers and any other Gitaly clients.
1. [Reconfigure GitLab](../restart_gitlab.md#omnibus-gitlab-reconfigure) on Gitaly servers.
- Method 2:
1. Edit `/etc/gitlab/gitlab.rb`.
1. Replace `GITLAB_SHELL_SECRET_TOKEN` with the real secret.
```ruby
gitlab_shell['secret_token'] = 'GITLAB_SHELL_SECRET_TOKEN'
```
2020-04-08 14:13:33 +05:30
2020-11-24 15:15:51 +05:30
1. Add Prometheus monitoring settings by editing `/etc/gitlab/gitlab.rb`. If Prometheus
is enabled on a different node, make edits on that node instead.
2019-12-26 22:10:19 +05:30
2021-02-22 17:27:13 +05:30
You need to replace:
2020-04-08 14:13:33 +05:30
- `PRAEFECT_HOST` with the IP address or hostname of the Praefect node
2021-03-11 19:13:27 +05:30
- `GITALY_HOST_*` with the IP address or hostname of each Gitaly node
2020-04-08 14:13:33 +05:30
```ruby
prometheus['scrape_configs'] = [
{
'job_name' => 'praefect',
'static_configs' => [
'targets' => [
2020-05-24 23:13:21 +05:30
'PRAEFECT_HOST:9652', # praefect-1
'PRAEFECT_HOST:9652', # praefect-2
'PRAEFECT_HOST:9652', # praefect-3
2020-04-08 14:13:33 +05:30
]
]
},
{
'job_name' => 'praefect-gitaly',
'static_configs' => [
'targets' => [
2021-03-11 19:13:27 +05:30
'GITALY_HOST_1:9236', # gitaly-1
'GITALY_HOST_2:9236', # gitaly-2
'GITALY_HOST_3:9236', # gitaly-3
2020-04-08 14:13:33 +05:30
]
]
}
]
```
1. Save the changes to `/etc/gitlab/gitlab.rb` and [reconfigure GitLab](../restart_gitlab.md#omnibus-gitlab-reconfigure):
```shell
gitlab-ctl reconfigure
```
2021-01-03 14:25:43 +05:30
1. Verify on each Gitaly node the Git Hooks can reach GitLab. On each Gitaly node run:
2022-08-27 11:52:29 +05:30
- For GitLab 15.3 and later, run `sudo /opt/gitlab/embedded/bin/gitaly check /var/opt/gitlab/gitaly/config.toml`.
- For GitLab 15.2 and earlier, run `sudo /opt/gitlab/embedded/bin/gitaly-hooks check /var/opt/gitlab/gitaly/config.toml`.
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
1. Verify that GitLab can reach Praefect:
2020-04-08 14:13:33 +05:30
```shell
2020-04-22 19:07:51 +05:30
gitlab-rake gitlab:gitaly:check
2020-04-08 14:13:33 +05:30
```
2021-09-04 01:27:46 +05:30
1. Check that the Praefect storage is configured to store new repositories:
2022-10-11 01:57:18 +05:30
1. On the top bar, select **Main menu > Admin**.
2021-09-04 01:27:46 +05:30
1. On the left sidebar, select **Settings > Repository**.
1. Expand the **Repository storage** section.
Following this guide, the `default` storage should have weight 100 to store all new repositories.
2020-04-08 14:13:33 +05:30
2020-07-28 23:09:34 +05:30
1. Verify everything is working by creating a new project. Check the
2020-04-08 14:13:33 +05:30
"Initialize repository with a README" box so that there is content in the
repository that viewed. If the project is created, and you can see the
README file, it works!
2021-06-08 01:23:25 +05:30
#### Use TCP for existing GitLab instances
When adding Gitaly Cluster to an existing Gitaly instance, the existing Gitaly storage
2022-07-23 23:45:48 +05:30
must be listening on TCP/TLS. If `gitaly_address` is not specified, then a Unix socket is used,
2021-09-04 01:27:46 +05:30
which prevents the communication with the cluster.
2021-06-08 01:23:25 +05:30
For example:
```ruby
git_data_dirs({
'default' => { 'gitaly_address' => 'tcp://old-gitaly.internal:8075' },
'cluster' => {
2022-07-23 23:45:48 +05:30
'gitaly_address' => 'tls://<PRAEFECT_LOADBALANCER_HOST>:3305',
2021-06-08 01:23:25 +05:30
'gitaly_token' => '<praefect_external_token>'
}
})
```
See [Mixed Configuration](configure_gitaly.md#mixed-configuration) for further information on
running multiple Gitaly storages.
2020-04-22 19:07:51 +05:30
### Grafana
Grafana is included with GitLab, and can be used to monitor your Praefect
2022-08-27 11:52:29 +05:30
cluster. See [Grafana Dashboard Service](https://docs.gitlab.com/omnibus/settings/grafana.html)
2020-04-22 19:07:51 +05:30
for detailed documentation.
To get started quickly:
2020-11-24 15:15:51 +05:30
1. SSH into the **GitLab** node (or whichever node has Grafana enabled) and login as root:
2020-04-22 19:07:51 +05:30
```shell
sudo -i
```
1. Enable the Grafana login form by editing `/etc/gitlab/gitlab.rb`.
```ruby
grafana['disable_login_form'] = false
```
2021-11-18 22:05:49 +05:30
1. Save the changes to `/etc/gitlab/gitlab.rb` and
[reconfigure GitLab](../restart_gitlab.md#omnibus-gitlab-reconfigure):
2020-04-22 19:07:51 +05:30
```shell
gitlab-ctl reconfigure
```
2021-03-11 19:13:27 +05:30
1. Set the Grafana administrator password. This command prompts you to enter a new
2020-04-22 19:07:51 +05:30
password:
```shell
gitlab-ctl set-grafana-password
```
2021-03-11 19:13:27 +05:30
1. In your web browser, open `/-/grafana` (such as
2020-04-22 19:07:51 +05:30
`https://gitlab.example.com/-/grafana`) on your GitLab server.
Login using the password you set, and the username `admin`.
1. Go to **Explore** and query `gitlab_build_info` to verify that you are
getting metrics from all your machines.
2021-03-11 19:13:27 +05:30
Congratulations! You've configured an observable fault-tolerant Praefect
2020-04-22 19:07:51 +05:30
cluster.
2021-10-27 15:23:28 +05:30
## Configure replication factor
2021-02-22 17:27:13 +05:30
WARNING:
2021-06-08 01:23:25 +05:30
Configurable replication factors require [repository-specific primary nodes](#repository-specific-primary-nodes) to be used.
2021-02-22 17:27:13 +05:30
Praefect supports configuring a replication factor on a per-repository basis, by assigning
specific storage nodes to host a repository.
2021-03-11 19:13:27 +05:30
Praefect does not store the actual replication factor, but assigns enough storages to host the repository
2021-02-22 17:27:13 +05:30
so the desired replication factor is met. If a storage node is later removed from the virtual storage,
the replication factor of repositories assigned to the storage is decreased accordingly.
2021-03-11 19:13:27 +05:30
You can configure:
2021-02-22 17:27:13 +05:30
2021-03-11 19:13:27 +05:30
- A default replication factor for each virtual storage that is applied to newly-created repositories.
The configuration is added to the `/etc/gitlab/gitlab.rb` file:
2021-02-22 17:27:13 +05:30
2021-03-11 19:13:27 +05:30
```ruby
2023-05-27 22:25:52 +05:30
praefect['configuration'] = {
2021-03-11 19:13:27 +05:30
# ...
2023-05-27 22:25:52 +05:30
virtual_storage: [
{
# ...
name: 'default',
default_replication_factor: 1,
},
],
}
2021-03-11 19:13:27 +05:30
```
2021-02-22 17:27:13 +05:30
2021-03-11 19:13:27 +05:30
- A replication factor for an existing repository using the `set-replication-factor` sub-command.
`set-replication-factor` automatically assigns or unassigns random storage nodes as
necessary to reach the desired replication factor. The repository's primary node is
always assigned first and is never unassigned.
2021-02-22 17:27:13 +05:30
2021-03-11 19:13:27 +05:30
```shell
sudo /opt/gitlab/embedded/bin/praefect -config /var/opt/gitlab/praefect/config.toml set-replication-factor -virtual-storage <virtual-storage> -repository <relative-path> -replication-factor <replication-factor>
```
2021-02-22 17:27:13 +05:30
2021-03-11 19:13:27 +05:30
- `-virtual-storage` is the virtual storage the repository is located in.
- `-repository` is the repository's relative path in the storage.
- `-replication-factor` is the desired replication factor of the repository. The minimum value is
`1`, as the primary needs a copy of the repository. The maximum replication factor is the number of
storages in the virtual storage.
On success, the assigned host storages are printed. For example:
```shell
$ sudo /opt/gitlab/embedded/bin/praefect -config /var/opt/gitlab/praefect/config.toml set-replication-factor -virtual-storage default -repository @hashed/3f/db/3fdba35f04dc8c462986c992bcf875546257113072a909c162f7e470e581e278.git -replication-factor 2
current assignments: gitaly-1, gitaly-2
```
2021-02-22 17:27:13 +05:30
2022-05-07 20:08:51 +05:30
If `default_replication_factor` is unset, the repositories are always replicated on every node defined in `virtual_storages`. If a new
2022-06-21 17:19:12 +05:30
node is introduced to the virtual storage, both new and existing repositories are replicated to the node automatically.
2022-05-07 20:08:51 +05:30
2022-07-23 23:45:48 +05:30
### Repository storage recommendations
The size of the required storage can vary between instances and depends on the set
[replication factor](index.md#replication-factor). You might want to include implementing
repository storage redundancy.
For a replication factor:
- Of `1`: NFS, Gitaly, and Gitaly Cluster have roughly the same storage requirements.
- More than `1`: The amount of required storage is `used space * replication factor`. `used space`
should include any planned future growth.
2022-07-16 23:28:13 +05:30
## Repository verification
> [Introduced](https://gitlab.com/gitlab-org/gitaly/-/issues/4080) in GitLab 15.0.
Praefect stores metadata about the repositories in a database. If the repositories are modified on disk
without going through Praefect, the metadata can become inaccurate. Because the metadata is used for replication
and routing decisions, any inaccuracies may cause problems. Praefect contains a background worker that
periodically verifies the metadata against the actual state on the disks. The worker:
1. Picks up a batch of replicas to verify on healthy storages. The replicas are either unverified or have exceeded
the configured verification interval. Replicas that have never been verified are prioritized, followed by
the other replicas ordered by longest time since the last successful verification.
1. Checks whether the replicas exist on their respective storages. If the:
- Replica exists, update its last successful verification time.
- Replica doesn't exist, remove its metadata record.
- Check failed, the replica is picked up for verification again when the next worker dequeues more work.
The worker acquires an exclusive verification lease on each of the replicas it is about to verify. This avoids multiple
workers from verifying the same replica concurrently. The worker releases the leases when it has completed its check.
Praefect contains a background goroutine that releases stale leases every 10 seconds when workers are terminated for
some reason without releasing the lease.
The worker logs each of the metadata removals prior to executing them. The `perform_deletions` key
indicates whether the invalid metadata records are actually deleted or not. For example:
```json
{
"level": "info",
"msg": "removing metadata records of non-existent replicas",
"perform_deletions": false,
"replicas": {
"default": {
"@hashed/6b/86/6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b.git": [
"praefect-internal-0"
]
}
}
}
```
### Configure the verification worker
The worker is enabled by default and verifies the metadata records every seven days. The verification
interval is configurable with any valid [Go duration string](https://pkg.go.dev/time#ParseDuration).
To verify the metadata every three days:
```ruby
2023-05-27 22:25:52 +05:30
praefect['configuration'] = {
# ...
background_verification: {
# ...
verification_interval: '72h',
},
}
2022-07-16 23:28:13 +05:30
```
Values of 0 and below disable the background verifier.
```ruby
2023-05-27 22:25:52 +05:30
praefect['configuration'] = {
# ...
background_verification: {
# ...
verification_interval: '0',
},
}
2022-07-16 23:28:13 +05:30
```
#### Enable deletions
2023-05-27 22:25:52 +05:30
> - [Introduced](https://gitlab.com/gitlab-org/gitaly/-/issues/4080) and disabled by default in GitLab 15.0
> - [Default enabled](https://gitlab.com/gitlab-org/gitaly/-/merge_requests/5321) in GitLab 15.9.
2022-07-16 23:28:13 +05:30
WARNING:
2023-05-27 22:25:52 +05:30
Deletions were disabled by default prior to GitLab 15.9 due to a race condition with repository renames
that can cause incorrect deletions, which is especially prominent in Geo instances as Geo performs more renames
than instances without Geo. In GitLab 15.0 to 15.5, you should enable deletions only if the [`gitaly_praefect_generated_replica_paths` feature flag](index.md#praefect-generated-replica-paths-gitlab-150-and-later) is enabled. The feature flag was removed in GitLab 15.6 making deletions always safe to enable.
2022-07-16 23:28:13 +05:30
2023-05-27 22:25:52 +05:30
By default, the worker deletes invalid metadata records. It also logs the deleted records and outputs Prometheus
metrics.
2022-07-16 23:28:13 +05:30
2023-05-27 22:25:52 +05:30
You can disable deleting invalid metadata records with:
2022-07-16 23:28:13 +05:30
```ruby
2023-05-27 22:25:52 +05:30
praefect['configuration'] = {
# ...
background_verification: {
# ...
delete_invalid_records: false,
},
}
2022-07-16 23:28:13 +05:30
```
### Prioritize verification manually
You can prioritize verification of some replicas ahead of their next scheduled verification time.
This might be needed after a disk failure, for example, when the administrator knows that the disk contents may have
changed. Praefect would eventually verify the replicas again, but users may encounter errors in the meantime.
To manually prioritize reverification of some replicas, use the `praefect verify` subcommand. The subcommand marks
replicas as unverified. Unverified replicas are prioritized by the background verification worker. The verification
worker must be enabled for the replicas to be verified.
Prioritize verifying the replicas of a specific repository:
```shell
sudo /opt/gitlab/embedded/bin/praefect -config /var/opt/gitlab/praefect/config.toml verify -repository-id=<repository-id>
```
Prioritize verifying all replicas stored on a virtual storage:
```shell
sudo /opt/gitlab/embedded/bin/praefect -config /var/opt/gitlab/praefect/config.toml verify -virtual-storage=<virtual-storage>
```
Prioritize verifying all replicas stored on a storage:
```shell
sudo /opt/gitlab/embedded/bin/praefect -config /var/opt/gitlab/praefect/config.toml verify -virtual-storage=<virtual-storage> -storage=<storage>
```
The output includes the number of replicas that were marked unverified.
2021-06-08 01:23:25 +05:30
## Automatic failover and primary election strategies
2023-05-27 22:25:52 +05:30
Praefect regularly checks the health of each Gitaly node, which is used to automatically fail over
2021-06-08 01:23:25 +05:30
to a newly-elected primary Gitaly node if the current primary node is found to be unhealthy.
2023-05-27 22:25:52 +05:30
You should use [repository-specific primary nodes](#repository-specific-primary-nodes). This is
2022-01-26 12:08:38 +05:30
[the only available election strategy](https://gitlab.com/gitlab-org/gitaly/-/issues/3574) from GitLab 14.0.
2021-06-08 01:23:25 +05:30
### Repository-specific primary nodes
2023-01-13 00:05:48 +05:30
> - [Introduced](https://gitlab.com/gitlab-org/gitaly/-/issues/3492) in GitLab 13.12, with primary elections run when Praefect starts or the cluster's consensus of a Gitaly node's health changes.
> - [Changed](https://gitlab.com/gitlab-org/gitaly/-/merge_requests/3543) in GitLab 14.1, primary elections are run lazily.
2021-06-08 01:23:25 +05:30
Gitaly Cluster supports electing repository-specific primary Gitaly nodes. Repository-specific
Gitaly primary nodes are enabled in `/etc/gitlab/gitlab.rb` by setting
`praefect['failover_election_strategy'] = 'per_repository'`.
Praefect's [deprecated election strategies](#deprecated-election-strategies):
- Elected a primary Gitaly node for each virtual storage, which was used as the primary node for
each repository in the virtual storage.
- Prevented horizontal scaling of a virtual storage. The primary Gitaly node needed a replica of
each repository and thus became the bottleneck.
The `per_repository` election strategy solves this problem by electing a primary Gitaly node separately for each
repository. Combined with [configurable replication factors](#configure-replication-factor), you can
horizontally scale storage capacity and distribute write load across Gitaly nodes.
2023-01-13 00:05:48 +05:30
Primary elections are run lazily. Praefect doesn't immediately elect a new primary node if the current
one is unhealthy. A new primary is elected if a request must be served while the current primary is unavailable.
2021-06-08 01:23:25 +05:30
2021-09-30 23:02:18 +05:30
A valid primary node candidate is a Gitaly node that:
2021-06-08 01:23:25 +05:30
2021-09-30 23:02:18 +05:30
- Is healthy. A Gitaly node is considered healthy if `>=50%` Praefect nodes have
successfully health checked the Gitaly node in the previous ten seconds.
- Has a fully up to date copy of the repository.
2021-06-08 01:23:25 +05:30
2021-09-30 23:02:18 +05:30
If there are multiple primary node candidates, Praefect:
2021-06-08 01:23:25 +05:30
2021-09-30 23:02:18 +05:30
- Picks one of them randomly.
- Prioritizes promoting a Gitaly node that is assigned to host the repository. If
there are no assigned Gitaly nodes to elect as the primary, Praefect may temporarily
elect an unassigned one. The unassigned primary is demoted in favor of an assigned
one when one becomes available.
2021-06-08 01:23:25 +05:30
2021-09-30 23:02:18 +05:30
If there are no valid primary candidates for a repository:
2021-06-08 01:23:25 +05:30
- The unhealthy primary node is demoted and the repository is left without a primary node.
- Operations that require a primary node fail until a primary is successfully elected.
#### Migrate to repository-specific primary Gitaly nodes
New Gitaly Clusters can start using the `per_repository` election strategy immediately.
To migrate existing clusters:
1. Praefect nodes didn't historically keep database records of every repository stored on the cluster. When
the `per_repository` election strategy is configured, Praefect expects to have database records of
2023-01-13 00:05:48 +05:30
each repository. A [background database migration](https://gitlab.com/gitlab-org/gitaly/-/merge_requests/2749)
creates any missing database records for repositories. Before migrating, check Praefect's logs to verify
that the database migration ran.
2020-04-22 19:07:51 +05:30
2021-06-08 01:23:25 +05:30
Check Praefect's logs for `repository importer finished` message. The `virtual_storages` field contains
the names of virtual storages and whether they've had any missing database records created.
2020-04-22 19:07:51 +05:30
2021-06-08 01:23:25 +05:30
For example, the `default` virtual storage has been successfully migrated:
```json
{"level":"info","msg":"repository importer finished","pid":19752,"time":"2021-04-28T11:41:36.743Z","virtual_storages":{"default":true}}
```
If a virtual storage has not been successfully migrated, it would have `false` next to it:
```json
{"level":"info","msg":"repository importer finished","pid":19752,"time":"2021-04-28T11:41:36.743Z","virtual_storages":{"default":false}}
```
2022-03-02 08:16:31 +05:30
The database migration runs when Praefect starts. If the database migration is unsuccessful, you can restart
a Praefect node to reattempt it.
2021-06-08 01:23:25 +05:30
1. Running two different election strategies side by side can cause a split brain, where different
2021-09-04 01:27:46 +05:30
Praefect nodes consider repositories to have different primaries. This can be avoided either:
- If a short downtime is acceptable:
2021-06-08 01:23:25 +05:30
2021-09-04 01:27:46 +05:30
1. Shut down all Praefect nodes before changing the election strategy. Do this by running `gitlab-ctl stop praefect` on the Praefect nodes.
2021-06-08 01:23:25 +05:30
2021-09-04 01:27:46 +05:30
1. On the Praefect nodes, configure the election strategy in `/etc/gitlab/gitlab.rb` with `praefect['failover_election_strategy'] = 'per_repository'`.
2021-06-08 01:23:25 +05:30
2023-03-04 22:38:38 +05:30
1. Run `gitlab-ctl reconfigure && gitlab-ctl start` to reconfigure and start the Praefect nodes.
2021-09-04 01:27:46 +05:30
- If downtime is unacceptable:
2021-09-30 23:02:18 +05:30
1. Determine which Gitaly node is [the current primary](troubleshooting.md#determine-primary-gitaly-node).
2021-09-04 01:27:46 +05:30
1. Comment out the secondary Gitaly nodes from the virtual storage's configuration in `/etc/gitlab/gitlab.rb`
on all Praefect nodes. This ensures there's only one Gitaly node configured, causing both of the election
strategies to elect the same Gitaly node as the primary.
1. Run `gitlab-ctl reconfigure` on all Praefect nodes. Wait until all Praefect processes have restarted and
the old processes have exited. This can take up to one minute.
1. On all Praefect nodes, configure the election strategy in `/etc/gitlab/gitlab.rb` with
`praefect['failover_election_strategy'] = 'per_repository'`.
1. Run `gitlab-ctl reconfigure` on all Praefect nodes. Wait until all of the Praefect processes have restarted and
the old processes have exited. This can take up to one minute.
1. Uncomment the secondary Gitaly node configuration commented out in the earlier step on all Praefect nodes.
1. Run `gitlab-ctl reconfigure` on all Praefect nodes to reconfigure and restart the Praefect processes.
2021-06-08 01:23:25 +05:30
### Deprecated election strategies
WARNING:
2022-01-26 12:08:38 +05:30
The below election strategies are deprecated and were removed in GitLab 14.0.
2021-06-08 01:23:25 +05:30
Migrate to [repository-specific primary nodes](#repository-specific-primary-nodes).
- **PostgreSQL:** Enabled by default until GitLab 14.0, and equivalent to:
`praefect['failover_election_strategy'] = 'sql'`.
This configuration option:
- Allows multiple Praefect nodes to coordinate via the PostgreSQL database to elect a primary
Gitaly node.
- Causes Praefect nodes to elect a new primary Gitaly node, monitor its health, and elect a new primary
Gitaly node if the current one is not reached within 10 seconds by a majority of the Praefect
nodes.
2020-06-23 00:09:42 +05:30
- **Memory:** Enabled by setting `praefect['failover_election_strategy'] = 'local'`
2021-06-08 01:23:25 +05:30
in `/etc/gitlab/gitlab.rb` on the Praefect node.
2020-04-22 19:07:51 +05:30
2021-06-08 01:23:25 +05:30
If a sufficient number of health checks fail for the current primary Gitaly node, a new primary is
elected. **Do not use with multiple Praefect nodes!** Using with multiple Praefect nodes is
likely to result in a split brain.