debian-mirror-gitlab/doc/administration/geo/disaster_recovery/background_verification.md

189 lines
7.4 KiB
Markdown
Raw Normal View History

2019-09-30 21:07:59 +05:30
# Automatic background verification **(PREMIUM ONLY)**
2019-07-31 22:56:46 +05:30
NOTE: **Note:**
Automatic background verification of repositories and wikis was added in
GitLab EE 10.6 but is enabled by default only on GitLab EE 11.1. You can
disable or enable this feature manually by following
[these instructions](#disabling-or-enabling-the-automatic-background-verification).
Automatic background verification ensures that the transferred data matches a
calculated checksum. If the checksum of the data on the **primary** node matches checksum of the
data on the **secondary** node, the data transferred successfully. Following a planned failover,
any corrupted data may be **lost**, depending on the extent of the corruption.
2019-12-26 22:10:19 +05:30
If verification fails on the **primary** node, this indicates Geo is replicating a corrupted object.
You can restore it from backup or remove it from the **primary** node to resolve the issue.
2019-07-31 22:56:46 +05:30
If verification succeeds on the **primary** node but fails on the **secondary** node,
this indicates that the object was corrupted during the replication process.
Geo actively try to correct verification failures marking the repository to
2020-04-08 14:13:33 +05:30
be resynced with a back-off period. If you want to reset the verification for
2020-04-22 19:07:51 +05:30
these failures, so you should follow [these instructions](background_verification.md#reset-verification-for-projects-where-verification-has-failed).
2019-07-31 22:56:46 +05:30
If verification is lagging significantly behind replication, consider giving
the node more time before scheduling a planned failover.
## Disabling or enabling the automatic background verification
Run the following commands in a Rails console on the **primary** node:
2020-03-13 15:44:24 +05:30
```shell
2019-07-31 22:56:46 +05:30
gitlab-rails console
```
To check if automatic background verification is enabled:
```ruby
Gitlab::Geo.repository_verification_enabled?
```
To disable automatic background verification:
```ruby
Feature.disable('geo_repository_verification')
```
To enable automatic background verification:
```ruby
Feature.enable('geo_repository_verification')
```
## Repository verification
2020-04-08 14:13:33 +05:30
Navigate to the **{admin}** **Admin Area >** **{location-dot}** **Geo** dashboard on the **primary** node and expand
2019-07-31 22:56:46 +05:30
the **Verification information** tab for that node to view automatic checksumming
status for repositories and wikis. Successes are shown in green, pending work
2020-05-24 23:13:21 +05:30
in gray, and failures in red.
2019-07-31 22:56:46 +05:30
![Verification status](img/verification-status-primary.png)
2020-04-08 14:13:33 +05:30
Navigate to the **{admin}** **Admin Area >** **{location-dot}** **Geo** dashboard on the **secondary** node and expand
2019-07-31 22:56:46 +05:30
the **Verification information** tab for that node to view automatic verification
status for repositories and wikis. As with checksumming, successes are shown in
2020-05-24 23:13:21 +05:30
green, pending work in gray, and failures in red.
2019-07-31 22:56:46 +05:30
![Verification status](img/verification-status-secondary.png)
## Using checksums to compare Geo nodes
To check the health of Geo **secondary** nodes, we use a checksum over the list of
Git references and their values. The checksum includes `HEAD`, `heads`, `tags`,
`notes`, and GitLab-specific references to ensure true consistency. If two nodes
have the same checksum, then they definitely hold the same references. We compute
the checksum for every node after every update to make sure that they are all
in sync.
## Repository re-verification
2020-03-13 15:44:24 +05:30
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/8550) in GitLab Enterprise Edition 11.6. Available in [GitLab Premium](https://about.gitlab.com/pricing/).
2019-07-31 22:56:46 +05:30
Due to bugs or transient infrastructure failures, it is possible for Git
repositories to change unexpectedly without being marked for verification.
Geo constantly reverifies the repositories to ensure the integrity of the
data. The default and recommended re-verification interval is 7 days, though
an interval as short as 1 day can be set. Shorter intervals reduce risk but
increase load and vice versa.
2020-04-08 14:13:33 +05:30
Navigate to the **{admin}** **Admin Area >** **{location-dot}** **Geo** dashboard on the **primary** node, and
2019-07-31 22:56:46 +05:30
click the **Edit** button for the **primary** node to customize the minimum
re-verification interval:
![Re-verification interval](img/reverification-interval.png)
The automatic background re-verification is enabled by default, but you can
disable if you need. Run the following commands in a Rails console on the
**primary** node:
2020-03-13 15:44:24 +05:30
```shell
2019-07-31 22:56:46 +05:30
gitlab-rails console
```
To disable automatic background re-verification:
```ruby
Feature.disable('geo_repository_reverification')
```
To enable automatic background re-verification:
```ruby
Feature.enable('geo_repository_reverification')
```
## Reset verification for projects where verification has failed
Geo actively try to correct verification failures marking the repository to
2020-04-08 14:13:33 +05:30
be resynced with a back-off period. If you want to reset them manually, this
2020-04-22 19:07:51 +05:30
Rake task marks projects where verification has failed or the checksum mismatch
2020-04-08 14:13:33 +05:30
to be resynced without the back-off period:
2019-07-31 22:56:46 +05:30
For repositories:
2020-03-13 15:44:24 +05:30
```shell
2019-09-04 21:01:54 +05:30
sudo gitlab-rake geo:verification:repository:reset
```
2019-07-31 22:56:46 +05:30
For wikis:
2020-03-13 15:44:24 +05:30
```shell
2019-09-04 21:01:54 +05:30
sudo gitlab-rake geo:verification:wiki:reset
```
2019-07-31 22:56:46 +05:30
## Reconcile differences with checksum mismatches
If the **primary** and **secondary** nodes have a checksum verification mismatch, the cause may not be apparent. To find the cause of a checksum mismatch:
2020-04-08 14:13:33 +05:30
1. Navigate to the **{admin}** **Admin Area >** **{overview}** **Overview > Projects** dashboard on the **primary** node, find the
2019-07-31 22:56:46 +05:30
project that you want to check the checksum differences and click on the
**Edit** button:
![Projects dashboard](img/checksum-differences-admin-projects.png)
1. On the project admin page get the **Gitaly storage name**, and **Gitaly relative path**:
![Project admin page](img/checksum-differences-admin-project-page.png)
2019-09-30 21:07:59 +05:30
1. Navigate to the project's repository directory on both **primary** and **secondary** nodes
(the path is usually `/var/opt/gitlab/git-data/repositories`). Note that if `git_data_dirs`
is customized, check the directory layout on your server to be sure.
2019-07-31 22:56:46 +05:30
2020-03-13 15:44:24 +05:30
```shell
2019-09-30 21:07:59 +05:30
cd /var/opt/gitlab/git-data/repositories
```
2019-07-31 22:56:46 +05:30
1. Run the following command on the **primary** node, redirecting the output to a file:
2020-03-13 15:44:24 +05:30
```shell
2019-07-31 22:56:46 +05:30
git show-ref --head | grep -E "HEAD|(refs/(heads|tags|keep-around|merge-requests|environments|notes)/)" > primary-node-refs
```
1. Run the following command on the **secondary** node, redirecting the output to a file:
2020-03-13 15:44:24 +05:30
```shell
2019-07-31 22:56:46 +05:30
git show-ref --head | grep -E "HEAD|(refs/(heads|tags|keep-around|merge-requests|environments|notes)/)" > secondary-node-refs
```
1. Copy the files from the previous steps on the same system, and do a diff between the contents:
2020-03-13 15:44:24 +05:30
```shell
2019-07-31 22:56:46 +05:30
diff primary-node-refs secondary-node-refs
```
## Current limitations
2019-09-30 21:07:59 +05:30
Automatic background verification doesn't cover attachments, LFS objects,
job artifacts, and user uploads in file storage. You can keep track of the
2020-04-22 19:07:51 +05:30
progress to include them in [Geo: Verify all replicated data](https://gitlab.com/groups/gitlab-org/-/epics/1430).
For now, you can verify their integrity
manually by following [these instructions](../../raketasks/check.md) on both
2019-09-30 21:07:59 +05:30
nodes, and comparing the output between them.
2020-04-08 14:13:33 +05:30
In GitLab EE 12.1, Geo calculates checksums for attachments, LFS objects, and
2019-09-30 21:07:59 +05:30
archived traces on secondary nodes after the transfer, compares it with the
stored checksums, and rejects transfers if mismatched. Please note that Geo
currently does not support an automatic way to verify these data if they have
been synced before GitLab EE 12.1.
2019-07-31 22:56:46 +05:30
Data in object storage is **not verified**, as the object store is responsible
for ensuring the integrity of the data.