Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Lambert <joshua.lambert@gmail.com>2018-03-02 19:16:41 +0300
committerJoshua Lambert <joshua.lambert@gmail.com>2018-03-02 19:16:41 +0300
commit64b4b7ecc407cbce657c21da0d7ebb8ea1213ce9 (patch)
treea9e449df63157bc81582e4c7e8ca3e58e6fe9b71 /doc/install
parent9b704ef327cc0224bf09c1e8d8d27df88ab13734 (diff)
Update docs to include information on the Geo extension
Diffstat (limited to 'doc/install')
-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.