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 Cai <jcai@gitlab.com>2022-05-04 16:13:30 +0300
committerJohn Cai <jcai@gitlab.com>2022-05-04 16:13:30 +0300
commita3f17492b15c02ed38f5cd8983ab892a018d2202 (patch)
treeedef3c3c691d7cea8978cd85f2c76afb1352a789
parenta67ebc3c6d0da948074a1df35b075020e5beb8f1 (diff)
fixes per cr from Samijc-cgroups-design-docs
-rw-r--r--doc/cgroups.md48
1 files changed, 24 insertions, 24 deletions
diff --git a/doc/cgroups.md b/doc/cgroups.md
index c19c5292d..74603352a 100644
--- a/doc/cgroups.md
+++ b/doc/cgroups.md
@@ -15,7 +15,7 @@ Here is the top level `[cgroups]` configuration:
[cgroups]
mountpoint = "/sys/fs/cgroup"
hierarchy_root = "gitaly"
-memory_bytes = 64424509440 // 60gb
+memory_bytes = 64424509440 # 60gb
cpu_shares = 1024
```
@@ -32,7 +32,7 @@ Cgroups that have a repository-level isolation can also be defined:
```toml
[cgroups.repositories]
count = 10000
-memory_bytes = 12884901888 // 12gb
+memory_bytes = 12884901888 # 12gb
cpu_shares = 512
```
@@ -83,53 +83,53 @@ that will be a fraction of the total CPU resources a machine has access to.
| |--gitaly
| |--gitaly-<pid>
| |--memory.limit_in_bytes
-| |--repository(@hashed/00/000)
+| |--repos-0
| | |--memory.limit_in_bytes
-| |--repository(@hashed/00/001)
+| |--repos-1
| | |--memory.limit_in_bytes
-| |--repository(@hashed/00/002)
+| |--repos-2
| | |--memory.limit_in_bytes
-| |--repository(@hashed/00/003)
+| |--repos-3
| | |--memory.limit_in_bytes
-| |--repository(@hashed/00/004)
+| |--repos-4
| | |--memory.limit_in_bytes
-| |--repository(@hashed/00/005)
+| |--repos-5
| | |--memory.limit_in_bytes
-| |--repository(@hashed/00/006)
+| |--repos-6
| | |--memory.limit_in_bytes
-| |--repository(@hashed/00/007)
+| |--repos-7
| | |--memory.limit_in_bytes
-| |--repository(@hashed/00/008)
+| |--repos-8
| | |--memory.limit_in_bytes
-| |--repository(@hashed/00/009)
+| |--repos-9
| | |--memory.limit_in_bytes
-| |--repository(@hashed/00/010)
+| |--repos-10
| |--memory.limit_in_bytes
|
|-cpu
| |--gitaly
| |--gitaly-<pid>
| |--cpu.shares
-| |--repository(@hashed/00/000)
+| |--repos-0
| | |--cpu.shares
-| |--repository(@hashed/00/001)
+| |--repos-1
| | |--cpu.shares
-| |--repository(@hashed/00/002)
+| |--repos-2
| | |--cpu.shares
-| |--repository(@hashed/00/003)
+| |--repos-3
| | |--cpu.shares
-| |--repository(@hashed/00/004)
+| |--repos-4
| | |--cpu.shares
-| |--repository(@hashed/00/005)
+| |--repos-5
| | |--cpu.shares
-| |--repository(@hashed/00/006)
+| |--repos-6
| | |--cpu.shares
-| |--repository(@hashed/00/007)
+| |--repos-7
| | |--cpu.shares
-| |--repository(@hashed/00/008)
+| |--repos-8
| | |--cpu.shares
-| |--repository(@hashed/00/009)
+| |--repos-9
| | |--cpu.shares
-| |--repository(@hashed/00/010)
+| |--repos-10
| |--cpu.shares
```