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:
authorToon Claes <toon@gitlab.com>2021-10-25 14:53:36 +0300
committerToon Claes <toon@gitlab.com>2021-10-25 14:53:36 +0300
commit8e3a280d7c26d122d720eddc426cd166735c036e (patch)
treed84c58052a7b86bb1e3f157aa77208b5c4a66d99
parent369fbdb165ef74bdc156256c43a130e2a0396893 (diff)
parent4b24c88bc8fd35ed5eb7e6df3557e7824715d157 (diff)
Merge branch 'jts/node' into 'master'
Better define 'node' in the design document See merge request gitlab-org/gitaly!3773
-rw-r--r--doc/design_ha.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/design_ha.md b/doc/design_ha.md
index b2885a952..51ba8db90 100644
--- a/doc/design_ha.md
+++ b/doc/design_ha.md
@@ -11,7 +11,7 @@ The following terminology may be used within the context of the Gitaly Cluster p
- Praefect - a transparent front end to all Gitaly shards. This reverse proxy ensures that all gRPC calls are forwarded to the correct shard by consulting the coordinator. The reverse proxy also ensures that write actions are performed transactionally when needed.
- etymology: from Latin praefectus for _a person appointed to any of various positions of command, authority, or superintendence, as a chief magistrate in ancient Rome or the chief administrative official of a department of France or Italy._
- [pronounced _pree-fect_](https://www.youtube.com/watch?v=MHszCZjPmTQ)
-- Node (TODO: we probably need a similar latin name here) - performs the actual git read/write operations to/from disk. Has no knowledge of shards/prafects/coordinators just as the Gitaly service existed prior to HA.
+- Node - This is the Gitaly service which performs the actual git read/write operations from/to disk. Has no knowledge of shards/praefects.
- RPC categories (#1496):
- Accessor - a side effect free (or read-only) RPC; does not modify the git repo (!228)
- Mutator - an RPC that modifies the data in the git repo (!228)