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:
authorsytses <sytse@gitlab.com>2017-01-19 07:30:22 +0300
committersytses <sytse@gitlab.com>2017-01-19 07:30:22 +0300
commit51929b60403d0b99f4d5661404f4b329d333f04e (patch)
tree6d0d3c74f85d9ce07f215001feb66a5341fd329e
parentd46f278aa9ae093014a0f38c19afd3a773a614d9 (diff)
DOcument router.
-rw-r--r--README.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/README.md b/README.md
index 01217c4fa..4457c544d 100644
--- a/README.md
+++ b/README.md
@@ -87,6 +87,7 @@ All design decision should be added here.
1. Use gitaly-client or HTTP/websocket clients? gitlab-shell copies the SSH stream, both ways, to gitaly over a websocket, workhorse just forwards the request to Gitaly, let’s use HTTP. https://gitlab.com/gitlab-org/gitaly/issues/5#note_20294280
1. We will use [E3 from BitBucket to measure performance closely in isolation](https://gitlab.com/gitlab-org/gitaly/issues/34).
1. Use environment variables for setting configurations (see #20).
+1. GitLab already has [logic so that the application servers know which file/git server contains what repository](https://docs.gitlab.com/ee/administration/repository_storages.html), this eliminates the need for a router.
## Iterate