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

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Newdigate <andrew@gitlab.com>2017-03-21 14:07:52 +0300
committerJacob Vosmaer (GitLab) <jacob@gitlab.com>2017-03-21 14:07:52 +0300
commit5045ee97cb5f59d608d921b5136fa040a2631efc (patch)
tree3057875a7876236b4716d27430f67246ffc09ff7
parente52897f76ca0459f3992583435994c3cced805cc (diff)
Updated goals
-rw-r--r--README.md9
1 files changed, 7 insertions, 2 deletions
diff --git a/README.md b/README.md
index aeb479bbb..771353c63 100644
--- a/README.md
+++ b/README.md
@@ -24,8 +24,13 @@ Make the git data storage tier of large GitLab instances, and *GitLab.com in par
This will be achieved by focusing on two areas (in this order):
- 1. Allow efficient caching
- 2. Resilient horizontal scaling of GitLab's Git data tier
+ 1. Move git operations as close to the data as possible
+ * Migrate from git operations on workers, accessing git data over NFS to
+ Gitaly services running on file-servers accessing git data on local
+ drives
+ * Ultimately, this will lead to all git operations occurring via the Gitaly
+ service and the removal of the need for NFS access to git volumes.
+ 1. Optimize git services using caching
#### Scope