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:
-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