2020-06-03 17:08:23 -04:00
---
stage: Enablement
group: Geo
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
type: howto
---
2019-07-08 04:50:38 -04:00
# Geo with Object storage **(PREMIUM ONLY)**
2019-05-05 12:08:21 -04:00
2019-10-15 23:06:12 -04:00
Geo can be used in combination with Object Storage (AWS S3, or other compatible object storage).
2019-05-05 12:08:21 -04:00
2019-10-15 23:06:12 -04:00
Currently, **secondary** nodes can use either:
2019-05-05 12:08:21 -04:00
2019-10-15 23:06:12 -04:00
- The same storage bucket as the **primary** node.
- A replicated storage bucket.
2019-05-05 12:08:21 -04:00
2019-10-15 23:06:12 -04:00
To have:
- GitLab manage replication, follow [Enabling GitLab replication ](#enabling-gitlab-managed-object-storage-replication ).
- Third-party services manage replication, follow [Third-party replication services ](#third-party-replication-services ).
2020-04-09 11:09:29 -04:00
[Read more about using object storage with GitLab ](../../object_storage.md ).
2019-10-15 23:06:12 -04:00
## Enabling GitLab managed object storage replication
2020-05-21 02:08:25 -04:00
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/10586) in GitLab 12.4.
2019-10-15 23:06:12 -04:00
2019-10-17 02:07:30 -04:00
CAUTION: **Caution:**
2020-09-08 11:08:41 -04:00
This is a [**beta** feature ](https://about.gitlab.com/handbook/product/#beta ) and is not ready yet for production use at any scale. The main limitations are a lack of testing at scale and no verification of any replicated data.
2019-10-17 02:07:30 -04:00
2019-10-15 23:06:12 -04:00
**Secondary** nodes can replicate files stored on the **primary** node regardless of
whether they are stored on the local filesystem or in object storage.
To enable GitLab replication, you must:
2020-07-29 20:09:53 -04:00
1. Go to **Admin Area > Geo** .
2019-10-15 23:06:12 -04:00
1. Press **Edit** on the **secondary** node.
1. Enable the **Allow this secondary node to replicate content on Object Storage**
checkbox.
2019-05-05 12:08:21 -04:00
For LFS, follow the documentation to
2020-04-09 02:09:30 -04:00
[set up LFS object storage ](../../lfs/index.md#storing-lfs-objects-in-remote-object-storage ).
2019-05-05 12:08:21 -04:00
For CI job artifacts, there is similar documentation to configure
[jobs artifact object storage ](../../job_artifacts.md#using-object-storage )
2020-09-07 11:09:04 -04:00
For user uploads, there is similar documentation to configure [upload object storage ](../../uploads.md#using-object-storage )
2019-05-05 12:08:21 -04:00
2019-10-15 23:06:12 -04:00
If you want to migrate the **primary** node's files to object storage, you can
configure the **secondary** in a few ways:
- Use the exact same object storage.
- Use a separate object store but leverage your object storage solution's built-in
replication.
- Use a separate object store and enable the **Allow this secondary node to replicate
content on Object Storage** setting.
GitLab does not currently support the case where both:
- The **primary** node uses local storage.
- A **secondary** node uses object storage.
2019-05-05 12:08:21 -04:00
2019-10-15 23:06:12 -04:00
## Third-party replication services
2019-05-05 12:08:21 -04:00
When using Amazon S3, you can use
[CRR ](https://docs.aws.amazon.com/AmazonS3/latest/dev/crr.html ) to
have automatic replication between the bucket used by the **primary** node and
the bucket used by **secondary** nodes.
If you are using Google Cloud Storage, consider using
[Multi-Regional Storage ](https://cloud.google.com/storage/docs/storage-classes#multi-regional ).
2019-07-07 20:41:33 -04:00
Or you can use the [Storage Transfer Service ](https://cloud.google.com/storage-transfer/docs/ ),
2019-05-05 12:08:21 -04:00
although this only supports daily synchronization.
2020-11-09 19:08:52 -05:00
For manual synchronization, or scheduled by `cron` , see:
2019-05-05 12:08:21 -04:00
2019-07-07 20:41:33 -04:00
- [`s3cmd sync` ](https://s3tools.org/s3cmd-sync )
2019-05-05 12:08:21 -04:00
- [`gsutil rsync` ](https://cloud.google.com/storage/docs/gsutil/commands/rsync )