summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcia Ramos <virtua.creative@gmail.com>2018-03-06 16:19:39 +0000
committerMarcia Ramos <virtua.creative@gmail.com>2018-03-06 16:19:39 +0000
commite5d03612552d1aedb24dcb1347bc507835a97757 (patch)
treef93db66223629a3dc3cc2239ffc221263203c8b5
parent3c93932addb8d9172aa25ff944babdb0f25a99ea (diff)
parent64b4b7ecc407cbce657c21da0d7ebb8ea1213ce9 (diff)
downloadgitlab-ce-e5d03612552d1aedb24dcb1347bc507835a97757.tar.gz
Merge branch '43798-document-required-pg-extensions' into 'master'
Document required PG extensions Closes #43798 See merge request gitlab-org/gitlab-ce!17491
-rw-r--r--doc/install/requirements.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/install/requirements.md b/doc/install/requirements.md
index b2c9177e6eb..1f2b4d9d3d9 100644
--- a/doc/install/requirements.md
+++ b/doc/install/requirements.md
@@ -137,6 +137,14 @@ CREATE EXTENSION pg_trgm;
On some systems you may need to install an additional package (e.g.
`postgresql-contrib`) for this extension to become available.
+#### Additional requirements for GitLab Geo
+
+If you are using [GitLab Geo](https://docs.gitlab.com/ee/development/geo.html), the [tracking database](https://docs.gitlab.com/ee/development/geo.html#geo-tracking-database) also requires the `postgres_fdw` extension.
+
+```
+CREATE EXTENSION postgres_fdw;
+```
+
## Unicorn Workers
It's possible to increase the amount of unicorn workers and this will usually help to reduce the response time of the applications and increase the ability to handle parallel requests.