debian-mirror-gitlab/doc/administration/repository_storage_paths.md

159 lines
5.9 KiB
Markdown
Raw Normal View History

2020-07-28 23:09:34 +05:30
---
stage: Create
group: Gitaly
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-07-28 23:09:34 +05:30
type: reference, howto
---
2021-03-11 19:13:27 +05:30
# Repository storage **(FREE SELF)**
2017-08-17 22:00:37 +05:30
2020-05-24 23:13:21 +05:30
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/4578) in GitLab 8.10.
2017-08-17 22:00:37 +05:30
2021-03-11 19:13:27 +05:30
GitLab stores [repositories](../user/project/repository/index.md) on repository storage. Repository
storage is either:
2017-08-17 22:00:37 +05:30
2021-03-11 19:13:27 +05:30
- A `gitaly_address`, which points to a [Gitaly node](gitaly/index.md).
- A `path`, which points directly a directory where the repository is stored.
2019-02-15 15:39:39 +05:30
2021-03-11 19:13:27 +05:30
GitLab allows you to define multiple repository storages to distribute the storage load between
several mount points. For example:
2019-02-15 15:39:39 +05:30
2021-03-11 19:13:27 +05:30
- When using Gitaly (Omnibus GitLab-style configuration):
```ruby
git_data_dirs({
'default' => { 'gitaly_address' => 'tcp://gitaly1.internal:8075' },
'storage1' => { 'gitaly_address' => 'tcp://gitaly2.internal:8075' },
})
```
2019-02-15 15:39:39 +05:30
2021-03-11 19:13:27 +05:30
- When using direct repository storage (source install-style configuration):
2019-02-15 15:39:39 +05:30
2021-03-11 19:13:27 +05:30
```plaintext
default:
path: /mnt/git-storage-1
storage2:
path: /mnt/git-storage-2
```
For more information on
- Configuring Gitaly, see [Configure Gitaly](gitaly/index.md#configure-gitaly).
- Configuring direct repository access, see the following section below.
## Configure repository storage paths
To configure repository storage paths:
1. Edit the necessary configuration files:
- `/etc/gitlab/gitlab.rb`, for Omnibus GitLab installations.
- `gitlab.yml`, for installations from source.
1. Add the required repository storage paths.
For repository storage paths:
- You must have at least one storage path called `default`.
- The paths are defined in key-value pairs. Apart from `default`, the key can be any name you choose
to name the file path.
- The target directories and any of its sub paths must not be a symlink.
- No target directory may be a sub-directory of another. That is, no nesting. For example, the
following configuration is invalid:
```plaintext
default:
path: /mnt/git-storage-1
storage2:
path: /mnt/git-storage-1/git-storage-2 # <- NOT OK because of nesting
```
### Configure for backups
For [backups](../raketasks/backup_restore.md) to work correctly:
2017-08-17 22:00:37 +05:30
2021-03-11 19:13:27 +05:30
- The repository storage path cannot be a mount point.
- The GitLab user must have correct permissions for the parent directory of the path.
Omnibus GitLab takes care of these issues for you, but for source installations you should be extra
careful.
While restoring a backup, the current contents of `/home/git/repositories` are moved to
`/home/git/repositories.old`. If `/home/git/repositories` is a mount point, then `mv` would be
moving things between mount points, and problems can occur.
Ideally, `/home/git` is the mount point, so things remain inside the same mount point. Omnibus
GitLab installations guarantee this because they don't specify the full repository path but instead
the parent path, but source installations do not.
### Example configuration
In the examples below, we add two additional repository storage paths configured to two additional
mount points.
For compatibility reasons `gitlab.yml` has a different structure than Omnibus GitLab configuration:
- In `gitlab.yml`, you indicate the path for the repositories, for example `/home/git/repositories`
- In Omnibus GitLab configuration you indicate `git_data_dirs`, which could be `/home/git` for
example. Then Omnibus GitLab creates a `repositories` directory under that path to use with
`gitlab.yml`.
2017-08-17 22:00:37 +05:30
2021-02-22 17:27:13 +05:30
NOTE:
2021-03-11 19:13:27 +05:30
This example uses NFS. We do not recommend using EFS for storage as it may impact GitLab performance.
Read the [relevant documentation](nfs.md#avoid-using-awss-elastic-file-system-efs) for more details.
2019-07-07 11:18:12 +05:30
2017-08-17 22:00:37 +05:30
**For installations from source**
1. Edit `gitlab.yml` and add the storage paths:
2019-09-30 21:07:59 +05:30
```yaml
repositories:
# Paths where repositories can be stored. Give the canonicalized absolute pathname.
# NOTE: REPOS PATHS MUST NOT CONTAIN ANY SYMLINK!!!
2021-03-11 19:13:27 +05:30
storages: # You must have at least a 'default' repository storage path.
2019-09-30 21:07:59 +05:30
default:
path: /home/git/repositories
2019-10-12 21:52:04 +05:30
nfs_1:
path: /mnt/nfs1/repositories
nfs_2:
path: /mnt/nfs2/repositories
2019-09-30 21:07:59 +05:30
```
2017-08-17 22:00:37 +05:30
2020-05-24 23:13:21 +05:30
1. [Restart GitLab](restart_gitlab.md#installations-from-source) for the changes to take effect.
2017-08-17 22:00:37 +05:30
**For Omnibus installations**
2021-03-11 19:13:27 +05:30
Edit `/etc/gitlab/gitlab.rb` by appending the rest of the paths to the default one:
2017-08-17 22:00:37 +05:30
2021-03-11 19:13:27 +05:30
```ruby
git_data_dirs({
"default" => { "path" => "/var/opt/gitlab/git-data" },
"nfs_1" => { "path" => "/mnt/nfs1/git-data" },
"nfs_2" => { "path" => "/mnt/nfs2/git-data" }
})
```
NOTE:
Omnibus stores the repositories in a `repositories` subdirectory of the `git-data` directory.
2017-08-17 22:00:37 +05:30
2021-03-11 19:13:27 +05:30
## Configure where new repositories are stored
2017-08-17 22:00:37 +05:30
2021-03-11 19:13:27 +05:30
After you [configure](#configure-repository-storage-paths) multiple repository storage paths, you
can choose where new repositories are stored:
2017-08-17 22:00:37 +05:30
2021-03-11 19:13:27 +05:30
1. Go to the Admin Area (**{admin}**).
1. Go to **Settings > Repository** and expand the **Repository storage** section.
1. Enter values in the **Storage nodes for new repositories** fields.
1. Select **Save changes**.
2017-08-17 22:00:37 +05:30
2021-03-11 19:13:27 +05:30
Each repository storage path can be assigned a weight from 0-100. When a new project is created,
these weights are used to determine the storage location the repository is created on. The higher
the weight of a given repository storage path relative to other repository storages paths, the more
often it is chosen. That is, `(storage weight) / (sum of all weights) * 100 = chance %`.
2020-07-28 23:09:34 +05:30
![Choose repository storage path in Admin Area](img/repository_storages_admin_ui_v13_1.png)
2017-08-17 22:00:37 +05:30
2021-03-11 19:13:27 +05:30
## Move repositories
2021-03-08 18:12:59 +05:30
To move a repository to a different repository path, use the
[Project repository storage moves](../api/project_repository_storage_moves.md) API. Use
the same process as [migrating existing repositories to Gitaly Cluster](gitaly/praefect.md#migrate-existing-repositories-to-gitaly-cluster).