2020-06-23 00:09:42 +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-06-23 00:09:42 +05:30
type: howto
---
2021-03-11 19:13:27 +05:30
# Disaster recovery for planned failover **(PREMIUM SELF)**
2019-07-31 22:56:46 +05:30
The primary use-case of Disaster Recovery is to ensure business continuity in
the event of unplanned outage, but it can be used in conjunction with a planned
failover to migrate your GitLab instance between regions without extended
downtime.
As replication between Geo nodes is asynchronous, a planned failover requires
a maintenance window in which updates to the **primary** node are blocked. The
length of this window is determined by your replication capacity - once the
**secondary** node is completely synchronized with the **primary** node, the failover can occur without
data loss.
This document assumes you already have a fully configured, working Geo setup.
2020-04-22 19:07:51 +05:30
Please read it and the [Disaster Recovery ](index.md ) failover
2019-07-31 22:56:46 +05:30
documentation in full before proceeding. Planned failover is a major operation,
and if performed incorrectly, there is a high risk of data loss. Consider
rehearsing the procedure until you are comfortable with the necessary steps and
have a high degree of confidence in being able to perform them accurately.
## Not all data is automatically replicated
2021-06-08 01:23:25 +05:30
If you are using any GitLab features that Geo [doesn't support ](../replication/datatypes.md#limitations-on-replicationverification ),
2019-07-31 22:56:46 +05:30
you must make separate provisions to ensure that the **secondary** node has an
up-to-date copy of any data associated with that feature. This may extend the
required scheduled maintenance period significantly.
A common strategy for keeping this period as short as possible for data stored
in files is to use `rsync` to transfer the data. An initial `rsync` can be
performed ahead of the maintenance window; subsequent `rsync` s (including a
2021-09-04 01:27:46 +05:30
final transfer inside the maintenance window) then transfers only the
2019-07-31 22:56:46 +05:30
*changes* between the **primary** node and the **secondary** nodes.
Repository-centric strategies for using `rsync` effectively can be found in the
2020-04-22 19:07:51 +05:30
[moving repositories ](../../operations/moving_repositories.md ) documentation; these strategies can
2021-06-08 01:23:25 +05:30
be adapted for use with any other file-based data, such as [GitLab Pages ](../../pages/index.md#change-storage-path ).
2019-07-31 22:56:46 +05:30
2022-06-21 17:19:12 +05:30
### Container registry
By default, the container registry is not automatically replicated to secondary
sites and this needs to be manually configured, see [Docker Registry for a secondary site ](../replication/docker_registry.md ).
If you are using local storage on your current primary site for the container
registry, you can `rsync` the container registry objects to the secondary
site you are about to failover to:
```shell
# Run from the secondary site
rsync --archive --perms --delete root@< geo-primary > :/var/opt/gitlab/gitlab-rails/shared/registry/. /var/opt/gitlab/gitlab-rails/shared/registry
```
Alternatively, you can [back up ](../../../raketasks/backup_restore.md#back-up-gitlab )
the container registry on the primary site and restore it onto the secondary
site:
1. On your primary site, back up only the registry and [exclude specific directories
from the backup](../../../raketasks/backup_restore.md#excluding-specific-directories-from-the-backup):
```shell
# Create a backup in the /var/opt/gitlab/backups folder
sudo gitlab-backup create SKIP=db,uploads,builds,artifacts,lfs,terraform_state,pages,repositories,packages
```
1. Copy the backup tarball generated from your primary site to the `/var/opt/gitlab/backups` folder
on your secondary site.
1. On your secondary site, restore the registry following the [Restore GitLab ](../../../raketasks/backup_restore.md#restore-gitlab )
documentation.
2020-04-08 14:13:33 +05:30
## Preflight checks
2019-07-31 22:56:46 +05:30
2021-03-11 19:13:27 +05:30
NOTE:
In GitLab 13.7 and earlier, if you have a data type with zero items to sync,
this command reports `ERROR - Replication is not up-to-date` even if
replication is actually up-to-date. This bug was fixed in GitLab 13.8 and
later.
2021-09-04 01:27:46 +05:30
Run this command to list out all preflight checks and automatically check if replication and verification are complete before scheduling a planned failover to ensure the process goes smoothly:
2020-07-28 23:09:34 +05:30
```shell
gitlab-ctl promotion-preflight-checks
```
Each step is described in more detail below.
2019-07-31 22:56:46 +05:30
### Object storage
If you have a large GitLab installation or cannot tolerate downtime, consider
2020-04-22 19:07:51 +05:30
[migrating to Object Storage ](../replication/object_storage.md ) **before** scheduling a planned failover.
2019-07-31 22:56:46 +05:30
Doing so reduces both the length of the maintenance window, and the risk of data
loss as a result of a poorly executed planned failover.
2019-12-21 20:55:43 +05:30
In GitLab 12.4, you can optionally allow GitLab to manage replication of Object Storage for
2020-04-22 19:07:51 +05:30
**secondary** nodes. For more information, see [Object Storage replication ](../replication/object_storage.md ).
2019-12-21 20:55:43 +05:30
2019-07-31 22:56:46 +05:30
### Review the configuration of each **secondary** node
Database settings are automatically replicated to the **secondary** node, but the
`/etc/gitlab/gitlab.rb` file must be set up manually, and differs between
nodes. If features such as Mattermost, OAuth or LDAP integration are enabled
2021-09-04 01:27:46 +05:30
on the **primary** node but not the **secondary** node, they are lost during failover.
2019-07-31 22:56:46 +05:30
Review the `/etc/gitlab/gitlab.rb` file for both nodes and ensure the **secondary** node
supports everything the **primary** node does **before** scheduling a planned failover.
### Run system checks
Run the following on both **primary** and **secondary** nodes:
2020-03-13 15:44:24 +05:30
```shell
2019-07-31 22:56:46 +05:30
gitlab-rake gitlab:check
gitlab-rake gitlab:geo:check
```
If any failures are reported on either node, they should be resolved **before**
scheduling a planned failover.
### Check that secrets match between nodes
The SSH host keys and `/etc/gitlab/gitlab-secrets.json` files should be
identical on all nodes. Check this by running the following on all nodes and
comparing the output:
2020-03-13 15:44:24 +05:30
```shell
2019-07-31 22:56:46 +05:30
sudo sha256sum /etc/ssh/ssh_host* /etc/gitlab/gitlab-secrets.json
```
If any files differ, replace the content on the **secondary** node with the
content from the **primary** node.
### Ensure Geo replication is up-to-date
The maintenance window won't end until Geo replication and verification is
completely finished. To keep the window as short as possible, you should
ensure these processes are close to 100% as possible during active use.
2021-09-04 01:27:46 +05:30
On the **secondary** node:
2019-07-31 22:56:46 +05:30
2021-11-11 11:23:49 +05:30
1. On the top bar, select **Menu > Admin** .
2021-09-04 01:27:46 +05:30
1. On the left sidebar, select **Geo > Nodes** .
Replicated objects (shown in green) should be close to 100%,
and there should be no failures (shown in red). If a large proportion of
objects aren't yet replicated (shown in gray), consider giving the node more
time to complete
2021-10-27 15:23:28 +05:30
![Replication status ](../replication/img/geo_dashboard_v14_0.png )
2019-07-31 22:56:46 +05:30
If any objects are failing to replicate, this should be investigated before
scheduling the maintenance window. Following a planned failover, anything that
2021-09-04 01:27:46 +05:30
failed to replicate is **lost** .
2019-07-31 22:56:46 +05:30
2019-09-04 21:01:54 +05:30
You can use the [Geo status API ](../../../api/geo_nodes.md#retrieve-project-sync-or-verification-failures-that-occurred-on-the-current-node ) to review failed objects and
2019-07-31 22:56:46 +05:30
the reasons for failure.
A common cause of replication failures is the data being missing on the
**primary** node - you can resolve these failures by restoring the data from backup,
or removing references to the missing data.
### Verify the integrity of replicated data
2020-04-22 19:07:51 +05:30
This [content was moved to another location ](background_verification.md ).
2019-07-31 22:56:46 +05:30
### Notify users of scheduled maintenance
2021-09-04 01:27:46 +05:30
On the **primary** node:
2019-07-31 22:56:46 +05:30
2021-11-11 11:23:49 +05:30
1. On the top bar, select **Menu > Admin** .
2021-09-04 01:27:46 +05:30
1. On the left sidebar, select **Messages** .
1. Add a message notifying users on the maintenance window.
You can check under **Geo > Nodes** to estimate how long it
takes to finish syncing.
1. Select **Add broadcast message** .
2019-07-31 22:56:46 +05:30
## Prevent updates to the **primary** node
2021-03-11 19:13:27 +05:30
To ensure that all data is replicated to a secondary site, updates (write requests) need to
2021-09-04 01:27:46 +05:30
be disabled on the **primary** site:
1. Enable [maintenance mode ](../../maintenance_mode/index.md ) on the **primary** node.
2021-11-11 11:23:49 +05:30
1. On the top bar, select **Menu > Admin** .
2021-09-04 01:27:46 +05:30
1. On the left sidebar, select **Monitoring > Background Jobs** .
1. On the Sidekiq dashboard, select **Cron** .
1. Select `Disable All` to disable non-Geo periodic background jobs.
1. Select `Enable` for the `geo_sidekiq_cron_config_worker` cron job.
This job re-enables several other cron jobs that are essential for planned
2019-07-31 22:56:46 +05:30
failover to complete successfully.
## Finish replicating and verifying all data
2021-11-18 22:05:49 +05:30
NOTE:
GitLab 13.9 through GitLab 14.3 are affected by a bug in which the Geo secondary site statuses will appear to stop updating and become unhealthy. For more information, see [Geo Admin Area shows 'Unhealthy' after enabling Maintenance Mode ](../replication/troubleshooting.md#geo-admin-area-shows-unhealthy-after-enabling-maintenance-mode ).
2019-07-31 22:56:46 +05:30
1. If you are manually replicating any data not managed by Geo, trigger the
final replication process now.
2021-09-04 01:27:46 +05:30
1. On the **primary** node:
2021-11-11 11:23:49 +05:30
1. On the top bar, select **Menu > Admin** .
2021-09-04 01:27:46 +05:30
1. On the left sidebar, select **Monitoring > Background Jobs** .
1. On the Sidekiq dashboard, select **Queues** , and wait for all queues except
those with `geo` in the name to drop to 0.
These queues contain work that has been submitted by your users; failing over
before it is completed, causes the work to be lost.
1. On the left sidebar, select **Geo > Nodes** and wait for the
following conditions to be true of the **secondary** node you are failing over to:
- All replication meters reach 100% replicated, 0% failures.
- All verification meters reach 100% verified, 0% failures.
- Database replication lag is 0ms.
- The Geo log cursor is up to date (0 events behind).
1. On the **secondary** node:
2021-11-11 11:23:49 +05:30
1. On the top bar, select **Menu > Admin** .
2021-09-04 01:27:46 +05:30
1. On the left sidebar, select **Monitoring > Background Jobs** .
1. On the Sidekiq dashboard, select **Queues** , and wait for all the `geo`
queues to drop to 0 queued and 0 running jobs.
1. [Run an integrity check ](../../raketasks/check.md ) to verify the integrity
of CI artifacts, LFS objects, and uploads in file storage.
At this point, your **secondary** node contains an up-to-date copy of everything the
**primary** node has, meaning nothing was lost when you fail over.
2019-07-31 22:56:46 +05:30
## Promote the **secondary** node
2021-11-18 22:05:49 +05:30
After the replication is finished, [promote the **secondary** node to a **primary** node ](index.md ). This process causes a brief outage on the **secondary** node, and users may need to log in again. If you follow the steps correctly, the old primary Geo site should still be disabled and user traffic should go to the newly-promoted site instead.
2019-07-31 22:56:46 +05:30
2021-11-18 22:05:49 +05:30
When the promotion is completed, the maintenance window is over, and your new **primary** node now
begins to diverge from the old one. If problems do arise at this point, failing
2020-04-22 19:07:51 +05:30
back to the old **primary** node [is possible ](bring_primary_back.md ), but likely to result
2020-04-08 14:13:33 +05:30
in the loss of any data uploaded to the new **primary** in the meantime.
2019-07-31 22:56:46 +05:30
2021-11-18 22:05:49 +05:30
Don't forget to remove the broadcast message after the failover is complete.
2021-12-11 22:18:48 +05:30
Finally, you can bring the [old site back as a secondary ](bring_primary_back.md#configure-the-former-primary-site-to-be-a-secondary-site ).