Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
f1f48e9f
Commit
f1f48e9f
authored
Feb 12, 2021
by
Grant Young
Committed by
Achilleas Pipinellis
Feb 12, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update Ref Arch docs with Gitaly Cluster
parent
401d2d96
Changes
8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
589 additions
and
298 deletions
+589
-298
doc/administration/reference_architectures/10k_users.md
doc/administration/reference_architectures/10k_users.md
+560
-259
doc/administration/reference_architectures/1k_users.md
doc/administration/reference_architectures/1k_users.md
+1
-0
doc/administration/reference_architectures/25k_users.md
doc/administration/reference_architectures/25k_users.md
+1
-1
doc/administration/reference_architectures/2k_users.md
doc/administration/reference_architectures/2k_users.md
+22
-34
doc/administration/reference_architectures/3k_users.md
doc/administration/reference_architectures/3k_users.md
+1
-1
doc/administration/reference_architectures/50k_users.md
doc/administration/reference_architectures/50k_users.md
+1
-1
doc/administration/reference_architectures/5k_users.md
doc/administration/reference_architectures/5k_users.md
+1
-1
doc/administration/reference_architectures/index.md
doc/administration/reference_architectures/index.md
+2
-1
No files found.
doc/administration/reference_architectures/10k_users.md
View file @
f1f48e9f
This diff is collapsed.
Click to expand it.
doc/administration/reference_architectures/1k_users.md
View file @
f1f48e9f
...
...
@@ -18,6 +18,7 @@ many organizations .
> - **Supported users (approximate):** 1,000
> - **High Availability:** No. For a highly-available environment, you can
> follow the [3K reference architecture](3k_users.md).
> - **Test requests per second (RPS) rates:** API: 20 RPS, Web: 2 RPS, Git (Pull): 2 RPS, Git (Push): 1 RPS
| Users | Configuration | GCP | AWS | Azure |
|--------------|-------------------------|----------------|-----------------|----------------|
...
...
doc/administration/reference_architectures/25k_users.md
View file @
f1f48e9f
...
...
@@ -13,7 +13,7 @@ full list of reference architectures, see
> - **Supported users (approximate):** 25,000
> - **High Availability:** Yes
> - **Test requests per second (RPS) rates:** API: 500 RPS, Web: 50 RPS, Git
: 5
0 RPS
> - **Test requests per second (RPS) rates:** API: 500 RPS, Web: 50 RPS, Git
(Pull): 50 RPS, Git (Push): 1
0 RPS
| Service | Nodes | Configuration | GCP | AWS | Azure |
|-----------------------------------------|-------------|-------------------------|-----------------|-------------|----------|
...
...
doc/administration/reference_architectures/2k_users.md
View file @
f1f48e9f
...
...
@@ -14,7 +14,7 @@ For a full list of reference architectures, see
> - **Supported users (approximate):** 2,000
> - **High Availability:** No. For a highly-available environment, you can
> follow the [3K reference architecture](3k_users.md).
> - **Test requests per second (RPS) rates:** API: 40 RPS, Web: 4 RPS, Git
: 4
RPS
> - **Test requests per second (RPS) rates:** API: 40 RPS, Web: 4 RPS, Git
(Pull): 4 RPS, Git (Push): 1
RPS
| Service | Nodes | Configuration | GCP | AWS | Azure |
|------------------------------------------|--------|-------------------------|----------------|--------------|---------|
...
...
@@ -27,44 +27,32 @@ For a full list of reference architectures, see
| Object storage | n/a | n/a | n/a | n/a | n/a |
| NFS server (optional, not recommended) | 1 | 4 vCPU, 3.6 GB memory | n1-highcpu-4 |
`c5.xlarge`
| F4s v2 |
```
mermaid
stateDiagram-v2
[*] --> LoadBalancer
LoadBalancer --> ApplicationServer
```
plantuml
@startuml 2k
card "**External Load Balancer**" as elb #6a9be7
ApplicationServer --> Gitaly
ApplicationServer --> Redis
ApplicationServer --> Database
ApplicationServer --> ObjectStorage
collections "**GitLab Rails** x3" as gitlab #32CD32
card "**Prometheus + Grafana**" as monitor #7FFFD4
card "**Gitaly**" as gitaly #FF8C00
card "**PostgreSQL**" as postgres #4EA7FF
card "**Redis**" as redis #FF6347
cloud "**Object Storage**" as object_storage #white
ApplicationMonitoring -->ApplicationServer
ApplicationMonitoring -->Redis
ApplicationMonitoring -->Database
elb -[#6a9be7]-> gitlab
elb -[#6a9be7]--> monitor
gitlab -[#32CD32]--> gitaly
gitlab -[#32CD32]--> postgres
gitlab -[#32CD32]-> object_storage
gitlab -[#32CD32]--> redis
state Database {
"PG_Node"
}
state Redis {
"Redis_Node"
}
monitor .[#7FFFD4]u-> gitlab
monitor .[#7FFFD4]-> gitaly
monitor .[#7FFFD4]-> postgres
monitor .[#7FFFD4,norank]--> redis
monitor .[#7FFFD4,norank]u--> elb
state Gitaly {
"Gitaly"
}
state ApplicationServer {
"AppServ_1..2"
}
state LoadBalancer {
"LoadBalancer"
}
state ApplicationMonitoring {
"Prometheus"
"Grafana"
}
@enduml
```
The Google Cloud Platform (GCP) architectures were built and tested using the
...
...
doc/administration/reference_architectures/3k_users.md
View file @
f1f48e9f
...
...
@@ -21,7 +21,7 @@ For a full list of reference architectures, see
> - **Supported users (approximate):** 3,000
> - **High Availability:** Yes
> - **Test requests per second (RPS) rates:** API: 60 RPS, Web: 6 RPS, Git
: 6
RPS
> - **Test requests per second (RPS) rates:** API: 60 RPS, Web: 6 RPS, Git
(Pull): 6 RPS, Git (Push): 1
RPS
| Service | Nodes | Configuration | GCP | AWS | Azure |
|--------------------------------------------|-------------|-----------------------|----------------|-------------|---------|
...
...
doc/administration/reference_architectures/50k_users.md
View file @
f1f48e9f
...
...
@@ -13,7 +13,7 @@ full list of reference architectures, see
> - **Supported users (approximate):** 50,000
> - **High Availability:** Yes
> - **Test requests per second (RPS) rates:** API: 1000 RPS, Web: 100 RPS, Git
: 10
0 RPS
> - **Test requests per second (RPS) rates:** API: 1000 RPS, Web: 100 RPS, Git
(Pull): 100 RPS, Git (Push): 2
0 RPS
| Service | Nodes | Configuration | GCP | AWS | Azure |
|-----------------------------------------|-------------|-------------------------|-----------------|--------------|----------|
...
...
doc/administration/reference_architectures/5k_users.md
View file @
f1f48e9f
...
...
@@ -20,7 +20,7 @@ costly-to-operate environment by using the
> - **Supported users (approximate):** 5,000
> - **High Availability:** Yes
> - **Test requests per second (RPS) rates:** API: 100 RPS, Web: 10 RPS, Git
: 10
RPS
> - **Test requests per second (RPS) rates:** API: 100 RPS, Web: 10 RPS, Git
(Pull): 10 RPS, Git (Push): 2
RPS
| Service | Nodes | Configuration | GCP | AWS | Azure |
|--------------------------------------------|-------------|-------------------------|----------------|-------------|----------|
...
...
doc/administration/reference_architectures/index.md
View file @
f1f48e9f
...
...
@@ -29,7 +29,8 @@ per 1,000 users:
-
API: 20 RPS
-
Web: 2 RPS
-
Git: 2 RPS
-
Git (Pull): 2 RPS
-
Git (Push): 0.4 RPS (rounded to nearest integer)
For GitLab instances with less than 2,000 users, it's recommended that you use
the
[
default setup
](
#automated-backups
)
by
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment