2020-10-19 20:09:22 -04:00
---
2020-10-22 02:08:26 -04:00
stage: Create
group: Gitaly
2020-11-26 01:09:20 -05:00
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-10-22 02:08:26 -04:00
type: reference
2020-10-19 20:09:22 -04:00
---
2021-01-28 01:08:59 -05:00
# Moving repositories managed by GitLab **(FREE SELF)**
2016-09-25 06:44:09 -04:00
Sometimes you need to move all repositories managed by GitLab to
2020-10-29 02:08:45 -04:00
another file system or another server.
## Moving data within a GitLab instance
2020-10-29 14:09:11 -04:00
The GitLab API is the recommended way to move Git repositories:
2020-10-29 02:08:45 -04:00
2020-10-29 14:09:11 -04:00
- Between servers.
- Between different storage.
- From single-node Gitaly to Gitaly Cluster.
2020-10-29 02:08:45 -04:00
2020-10-29 14:09:11 -04:00
For more information, see:
2021-03-10 07:09:14 -05:00
- [Configuring additional storage for Gitaly ](../gitaly/configure_gitaly.md#network-architecture ). This
2021-01-27 19:09:33 -05:00
example configures additional storage called `storage1` and `storage2` .
2020-10-29 14:09:11 -04:00
- [The API documentation ](../../api/project_repository_storage_moves.md ) details the endpoints for
2021-01-14 10:10:46 -05:00
querying and scheduling project repository moves.
- [The API documentation ](../../api/snippet_repository_storage_moves.md ) details the endpoints for
querying and scheduling snippet repository moves.
2021-02-12 10:08:43 -05:00
- [The API documentation ](../../api/group_repository_storage_moves.md ) details the endpoints for
querying and scheduling group repository moves ** (PREMIUM SELF)**.
2021-04-06 14:09:02 -04:00
- [Migrate to Gitaly Cluster ](../gitaly/praefect.md#migrate-to-gitaly-cluster ).
2020-10-29 02:08:45 -04:00
## Migrating to another GitLab instance
2020-10-29 14:09:11 -04:00
[Using the API ](#moving-data-within-a-gitlab-instance ) isn't an option if you are migrating to a new
GitLab environment, for example:
2020-10-29 02:08:45 -04:00
- From a single-node GitLab to a scaled-out architecture.
2021-01-27 19:09:33 -05:00
- From a GitLab instance in your private data center to a cloud provider.
2020-10-29 02:08:45 -04:00
2020-10-29 14:09:11 -04:00
The rest of the document looks
2016-09-25 06:44:09 -04:00
at some of the ways you can copy all your repositories from
`/var/opt/gitlab/git-data/repositories` to `/mnt/gitlab/repositories` .
2020-10-22 02:08:26 -04:00
We look at three scenarios:
- The target directory is empty.
- The target directory contains an outdated copy of the repositories.
- How to deal with thousands of repositories.
2016-09-25 06:44:09 -04:00
2020-12-07 19:09:45 -05:00
WARNING:
2020-10-22 02:08:26 -04:00
Each of the approaches we list can or does overwrite data in the target directory
`/mnt/gitlab/repositories` . Do not mix up the source and the target.
2016-09-25 06:44:09 -04:00
2020-10-29 02:08:45 -04:00
### Recommended approach in all cases
2020-12-15 22:09:46 -05:00
The GitLab [backup and restore capability ](../../raketasks/backup_restore.md ) should be used. Git
2020-10-29 14:09:11 -04:00
repositories are accessed, managed, and stored on GitLab servers by Gitaly as a database. Data loss
can result from directly accessing and copying Gitaly's files using tools like `rsync` .
2020-10-29 02:08:45 -04:00
2020-10-29 14:09:11 -04:00
- From GitLab 13.3, backup performance can be improved by
[processing multiple repositories concurrently ](../../raketasks/backup_restore.md#back-up-git-repositories-concurrently ).
- Backups can be created of just the repositories using the
[skip feature ](../../raketasks/backup_restore.md#excluding-specific-directories-from-the-backup ).
2020-10-29 02:08:45 -04:00
### Target directory is empty: use a `tar` pipe
2016-09-25 06:44:09 -04:00
If the target directory `/mnt/gitlab/repositories` is empty the
2020-08-11 14:10:06 -04:00
simplest thing to do is to use a `tar` pipe. This method has low
overhead and `tar` is almost always already installed on your system.
However, it is not possible to resume an interrupted `tar` pipe: if
2016-09-25 06:44:09 -04:00
that happens then all data must be copied again.
2020-02-02 22:08:30 -05:00
```shell
2018-10-03 19:26:01 -04:00
sudo -u git sh -c 'tar -C /var/opt/gitlab/git-data/repositories -cf - -- . |\
tar -C /mnt/gitlab/repositories -xf -'
2016-09-25 06:44:09 -04:00
```
If you want to see progress, replace `-xf` with `-xvf` .
2020-10-29 02:08:45 -04:00
#### `tar` pipe to another server
2016-09-25 06:44:09 -04:00
2020-08-11 14:10:06 -04:00
You can also use a `tar` pipe to copy data to another server. If your
2020-03-23 23:09:28 -04:00
`git` user has SSH access to the new server as `git@newserver` , you
2016-09-25 06:44:09 -04:00
can pipe the data through SSH.
2020-02-02 22:08:30 -05:00
```shell
2018-10-03 19:26:01 -04:00
sudo -u git sh -c 'tar -C /var/opt/gitlab/git-data/repositories -cf - -- . |\
ssh git@newserver tar -C /mnt/gitlab/repositories -xf -'
2016-09-25 06:44:09 -04:00
```
If you want to compress the data before it goes over the network
2020-10-22 02:08:26 -04:00
(which costs you CPU cycles) you can replace `ssh` with `ssh -C` .
2016-09-25 06:44:09 -04:00
2020-10-29 02:08:45 -04:00
### The target directory contains an outdated copy of the repositories: use `rsync`
2020-12-07 19:09:45 -05:00
WARNING:
2020-10-29 14:09:11 -04:00
Using `rsync` to migrate Git data can cause data loss and repository corruption.
2020-10-29 02:08:45 -04:00
[These instructions are being reviewed ](https://gitlab.com/gitlab-org/gitlab/-/issues/270422 ).
2016-09-25 06:44:09 -04:00
If the target directory already contains a partial / outdated copy
of the repositories it may be wasteful to copy all the data again
2020-08-11 14:10:06 -04:00
with `tar` . In this scenario it is better to use `rsync` . This utility
2021-01-27 19:09:33 -05:00
is either already installed on your system, or installable
by using `apt` or `yum` .
2016-09-25 06:44:09 -04:00
2020-02-02 22:08:30 -05:00
```shell
2018-10-03 19:26:01 -04:00
sudo -u git sh -c 'rsync -a --delete /var/opt/gitlab/git-data/repositories/. \
/mnt/gitlab/repositories'
2016-09-25 06:44:09 -04:00
```
The `/.` in the command above is very important, without it you can
2021-01-27 19:09:33 -05:00
get the wrong directory structure in the target directory.
2016-09-25 06:44:09 -04:00
If you want to see progress, replace `-a` with `-av` .
2020-10-29 02:08:45 -04:00
#### Single `rsync` to another server
2020-12-07 19:09:45 -05:00
WARNING:
2020-10-29 14:09:11 -04:00
Using `rsync` to migrate Git data can cause data loss and repository corruption.
2020-10-29 02:08:45 -04:00
[These instructions are being reviewed ](https://gitlab.com/gitlab-org/gitlab/-/issues/270422 ).
2016-09-25 06:44:09 -04:00
2019-09-26 02:06:27 -04:00
If the `git` user on your source system has SSH access to the target
2020-08-11 14:10:06 -04:00
server you can send the repositories over the network with `rsync` .
2016-09-25 06:44:09 -04:00
2020-02-02 22:08:30 -05:00
```shell
2018-10-03 19:26:01 -04:00
sudo -u git sh -c 'rsync -a --delete /var/opt/gitlab/git-data/repositories/. \
git@newserver:/mnt/gitlab/repositories'
2016-09-25 06:44:09 -04:00
```
2020-10-29 02:08:45 -04:00
### Thousands of Git repositories: use one `rsync` per repository
2020-12-07 19:09:45 -05:00
WARNING:
2020-10-29 14:09:11 -04:00
Using `rsync` to migrate Git data can cause data loss and repository corruption.
2020-10-29 02:08:45 -04:00
[These instructions are being reviewed ](https://gitlab.com/gitlab-org/gitlab/-/issues/270422 ).
2016-09-25 06:44:09 -04:00
2021-01-27 19:09:33 -05:00
Every time you start an `rsync` job it must:
- Inspect all files in the source directory.
- Inspect all files in the target directory.
- Decide whether or not to copy files.
If the source or target directory
has many contents, this startup phase of `rsync` can become a burden
for your GitLab server. You can reduce the workload of `rsync` by dividing its
work in smaller pieces, and sync one repository at a time.
2016-09-25 06:44:09 -04:00
2020-10-22 02:08:26 -04:00
In addition to `rsync` we use [GNU Parallel ](http://www.gnu.org/software/parallel/ ).
2021-01-27 19:09:33 -05:00
This utility is not included in GitLab, so you must install it yourself with `apt`
or `yum` .
2016-09-25 06:44:09 -04:00
2021-01-27 19:09:33 -05:00
This process does not clean up repositories at the target location that no
longer exist at the source.
2020-10-29 02:08:45 -04:00
#### Parallel `rsync` for all repositories known to GitLab
2016-09-25 06:44:09 -04:00
2020-12-07 19:09:45 -05:00
WARNING:
2020-10-29 14:09:11 -04:00
Using `rsync` to migrate Git data can cause data loss and repository corruption.
2020-10-29 02:08:45 -04:00
[These instructions are being reviewed ](https://gitlab.com/gitlab-org/gitlab/-/issues/270422 ).
2016-09-25 06:44:09 -04:00
2020-10-22 02:08:26 -04:00
This syncs repositories with 10 `rsync` processes at a time. We keep
2016-09-25 06:44:09 -04:00
track of progress so that the transfer can be restarted if necessary.
2019-09-26 02:06:27 -04:00
First we create a new directory, owned by `git` , to hold transfer
2016-09-25 06:44:09 -04:00
logs. We assume the directory is empty before we start the transfer
procedure, and that we are the only ones writing files in it.
2020-02-02 22:08:30 -05:00
```shell
2016-09-25 06:44:09 -04:00
# Omnibus
sudo mkdir /var/opt/gitlab/transfer-logs
sudo chown git:git /var/opt/gitlab/transfer-logs
# Source
sudo -u git -H mkdir /home/git/transfer-logs
```
We seed the process with a list of the directories we want to copy.
2020-02-02 22:08:30 -05:00
```shell
2016-09-25 06:44:09 -04:00
# Omnibus
sudo -u git sh -c 'gitlab-rake gitlab:list_repos > /var/opt/gitlab/transfer-logs/all-repos-$(date +%s).txt'
# Source
cd /home/git/gitlab
sudo -u git -H sh -c 'bundle exec rake gitlab:list_repos > /home/git/transfer-logs/all-repos-$(date +%s).txt'
```
Now we can start the transfer. The command below is idempotent, and
the number of jobs done by GNU Parallel should converge to zero. If it
2018-10-03 19:26:01 -04:00
does not, some repositories listed in `all-repos-1234.txt` may have been
2016-09-25 06:44:09 -04:00
deleted/renamed before they could be copied.
2020-02-02 22:08:30 -05:00
```shell
2016-09-25 06:44:09 -04:00
# Omnibus
sudo -u git sh -c '
cat /var/opt/gitlab/transfer-logs/* | sort | uniq -u |\
/usr/bin/env JOBS=10 \
/opt/gitlab/embedded/service/gitlab-rails/bin/parallel-rsync-repos \
/var/opt/gitlab/transfer-logs/success-$(date +%s).log \
/var/opt/gitlab/git-data/repositories \
/mnt/gitlab/repositories
'
# Source
cd /home/git/gitlab
sudo -u git -H sh -c '
cat /home/git/transfer-logs/* | sort | uniq -u |\
/usr/bin/env JOBS=10 \
bin/parallel-rsync-repos \
/home/git/transfer-logs/success-$(date +%s).log \
/home/git/repositories \
/mnt/gitlab/repositories
`
```
2020-10-29 02:08:45 -04:00
#### Parallel `rsync` only for repositories with recent activity
2020-12-07 19:09:45 -05:00
WARNING:
2020-10-29 14:09:11 -04:00
Using `rsync` to migrate Git data can cause data loss and repository corruption.
2020-10-29 02:08:45 -04:00
[These instructions are being reviewed ](https://gitlab.com/gitlab-org/gitlab/-/issues/270422 ).
2016-09-25 06:44:09 -04:00
Suppose you have already done one sync that started after 2015-10-1 12:00 UTC.
2021-01-27 19:09:33 -05:00
Then you might only want to sync repositories that were changed by using GitLab
after that time. You can use the `SINCE` variable to tell `rake
2018-10-03 19:26:01 -04:00
gitlab:list_repos` to only print repositories with recent activity.
2016-09-25 06:44:09 -04:00
2020-02-02 22:08:30 -05:00
```shell
2016-09-25 06:44:09 -04:00
# Omnibus
sudo gitlab-rake gitlab:list_repos SINCE='2015-10-1 12:00 UTC' |\
sudo -u git \
/usr/bin/env JOBS=10 \
/opt/gitlab/embedded/service/gitlab-rails/bin/parallel-rsync-repos \
success-$(date +%s).log \
/var/opt/gitlab/git-data/repositories \
/mnt/gitlab/repositories
# Source
cd /home/git/gitlab
sudo -u git -H bundle exec rake gitlab:list_repos SINCE='2015-10-1 12:00 UTC' |\
sudo -u git -H \
/usr/bin/env JOBS=10 \
bin/parallel-rsync-repos \
success-$(date +%s).log \
/home/git/repositories \
/mnt/gitlab/repositories
```