debian-mirror-gitlab/doc/administration/operations/moving_repositories.md

184 lines
6.5 KiB
Markdown
Raw Normal View History

2021-01-03 14:25:43 +05:30
---
stage: none
group: unassigned
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/#designated-technical-writers
---
2016-11-03 12:29:30 +05:30
# Moving repositories managed by GitLab
Sometimes you need to move all repositories managed by GitLab to
another filesystem or another server. In this document we will look
at some of the ways you can copy all your repositories from
`/var/opt/gitlab/git-data/repositories` to `/mnt/gitlab/repositories`.
We will look at three scenarios: the target directory is empty, the
target directory contains an outdated copy of the repositories, and
how to deal with thousands of repositories.
2020-10-24 23:57:45 +05:30
DANGER: **Danger:**
Each of the approaches we list can/will overwrite data in the
2016-11-03 12:29:30 +05:30
target directory `/mnt/gitlab/repositories`. Do not mix up the
2020-10-24 23:57:45 +05:30
source and the target.
2016-11-03 12:29:30 +05:30
2020-10-24 23:57:45 +05:30
## Target directory is empty: use a `tar` pipe
2016-11-03 12:29:30 +05:30
If the target directory `/mnt/gitlab/repositories` is empty the
2020-10-24 23:57:45 +05:30
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-11-03 12:29:30 +05:30
that happens then all data must be copied again.
2020-03-13 15:44:24 +05:30
```shell
2018-12-05 23:21:45 +05:30
sudo -u git sh -c 'tar -C /var/opt/gitlab/git-data/repositories -cf - -- . |\
tar -C /mnt/gitlab/repositories -xf -'
2016-11-03 12:29:30 +05:30
```
If you want to see progress, replace `-xf` with `-xvf`.
2020-10-24 23:57:45 +05:30
### `tar` pipe to another server
2016-11-03 12:29:30 +05:30
2020-10-24 23:57:45 +05:30
You can also use a `tar` pipe to copy data to another server. If your
2020-04-22 19:07:51 +05:30
`git` user has SSH access to the new server as `git@newserver`, you
2016-11-03 12:29:30 +05:30
can pipe the data through SSH.
2020-03-13 15:44:24 +05:30
```shell
2018-12-05 23:21:45 +05:30
sudo -u git sh -c 'tar -C /var/opt/gitlab/git-data/repositories -cf - -- . |\
ssh git@newserver tar -C /mnt/gitlab/repositories -xf -'
2016-11-03 12:29:30 +05:30
```
If you want to compress the data before it goes over the network
(which will cost you CPU cycles) you can replace `ssh` with `ssh -C`.
2020-10-24 23:57:45 +05:30
## The target directory contains an outdated copy of the repositories: use `rsync`
2016-11-03 12:29:30 +05:30
If the target directory already contains a partial / outdated copy
of the repositories it may be wasteful to copy all the data again
2020-10-24 23:57:45 +05:30
with `tar`. In this scenario it is better to use `rsync`. This utility
2016-11-03 12:29:30 +05:30
is either already installed on your system or easily installable
2020-10-24 23:57:45 +05:30
via `apt`, `yum`, etc.
2016-11-03 12:29:30 +05:30
2020-03-13 15:44:24 +05:30
```shell
2018-12-05 23:21:45 +05:30
sudo -u git sh -c 'rsync -a --delete /var/opt/gitlab/git-data/repositories/. \
/mnt/gitlab/repositories'
2016-11-03 12:29:30 +05:30
```
The `/.` in the command above is very important, without it you can
easily get the wrong directory structure in the target directory.
If you want to see progress, replace `-a` with `-av`.
2020-10-24 23:57:45 +05:30
### Single `rsync` to another server
2016-11-03 12:29:30 +05:30
2019-12-21 20:55:43 +05:30
If the `git` user on your source system has SSH access to the target
2020-10-24 23:57:45 +05:30
server you can send the repositories over the network with `rsync`.
2016-11-03 12:29:30 +05:30
2020-03-13 15:44:24 +05:30
```shell
2018-12-05 23:21:45 +05:30
sudo -u git sh -c 'rsync -a --delete /var/opt/gitlab/git-data/repositories/. \
git@newserver:/mnt/gitlab/repositories'
2016-11-03 12:29:30 +05:30
```
2020-10-24 23:57:45 +05:30
## Thousands of Git repositories: use one `rsync` per repository
2016-11-03 12:29:30 +05:30
2020-10-24 23:57:45 +05:30
Every time you start an `rsync` job it has to inspect all files in
2016-11-03 12:29:30 +05:30
the source directory, all files in the target directory, and then
decide what files to copy or not. If the source or target directory
2020-10-24 23:57:45 +05:30
has many contents this startup phase of `rsync` can become a burden
for your GitLab server. In cases like this you can make `rsync`'s
2016-11-03 12:29:30 +05:30
life easier by dividing its work in smaller pieces, and sync one
repository at a time.
2020-10-24 23:57:45 +05:30
In addition to `rsync` we will use [GNU
2016-11-03 12:29:30 +05:30
Parallel](http://www.gnu.org/software/parallel/). This utility is
2020-10-24 23:57:45 +05:30
not included in GitLab so you need to install it yourself with `apt`
or `yum`. Also note that the GitLab scripts we used below were added
2016-11-03 12:29:30 +05:30
in GitLab 8.1.
2020-06-11 16:45:22 +05:30
**This process does not clean up repositories at the target location that no
longer exist at the source.** If you start using your GitLab instance with
2016-11-03 12:29:30 +05:30
`/mnt/gitlab/repositories`, you need to run `gitlab-rake gitlab:cleanup:repos`
after switching to the new repository storage directory.
2020-10-24 23:57:45 +05:30
### Parallel `rsync` for all repositories known to GitLab
2016-11-03 12:29:30 +05:30
2020-10-24 23:57:45 +05:30
This will sync repositories with 10 `rsync` processes at a time. We keep
2016-11-03 12:29:30 +05:30
track of progress so that the transfer can be restarted if necessary.
2019-12-21 20:55:43 +05:30
First we create a new directory, owned by `git`, to hold transfer
2016-11-03 12:29:30 +05:30
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-03-13 15:44:24 +05:30
```shell
2016-11-03 12:29:30 +05:30
# 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-03-13 15:44:24 +05:30
```shell
2016-11-03 12:29:30 +05:30
# 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-12-05 23:21:45 +05:30
does not, some repositories listed in `all-repos-1234.txt` may have been
2016-11-03 12:29:30 +05:30
deleted/renamed before they could be copied.
2020-03-13 15:44:24 +05:30
```shell
2016-11-03 12:29:30 +05:30
# 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-24 23:57:45 +05:30
### Parallel `rsync` only for repositories with recent activity
2016-11-03 12:29:30 +05:30
Suppose you have already done one sync that started after 2015-10-1 12:00 UTC.
Then you might only want to sync repositories that were changed via GitLab
2018-12-05 23:21:45 +05:30
_after_ that time. You can use the `SINCE` variable to tell `rake
gitlab:list_repos` to only print repositories with recent activity.
2016-11-03 12:29:30 +05:30
2020-03-13 15:44:24 +05:30
```shell
2016-11-03 12:29:30 +05:30
# 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
```