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:
authorJohn Skarbek <jskarbek@gitlab.com>2021-10-25 14:53:35 +0300
committerToon Claes <toon@gitlab.com>2021-10-25 14:53:35 +0300
commit4b24c88bc8fd35ed5eb7e6df3557e7824715d157 (patch)
tree61839fee20471ee2e099cc348cb8ec1e0cbbe31c
parent36833c3c74e68c6ee6d35f9e599d232c8c2dda1d (diff)
Better define 'node' in the design document
-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)