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
c782dc88
Commit
c782dc88
authored
Apr 23, 2021
by
Grant Young
Committed by
Achilleas Pipinellis
Apr 23, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update Sidekiq Cluster process guidance in RA docs
parent
81ab85a4
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
47 additions
and
8 deletions
+47
-8
doc/administration/reference_architectures/10k_users.md
doc/administration/reference_architectures/10k_users.md
+9
-2
doc/administration/reference_architectures/25k_users.md
doc/administration/reference_architectures/25k_users.md
+9
-2
doc/administration/reference_architectures/2k_users.md
doc/administration/reference_architectures/2k_users.md
+2
-0
doc/administration/reference_architectures/3k_users.md
doc/administration/reference_architectures/3k_users.md
+9
-1
doc/administration/reference_architectures/50k_users.md
doc/administration/reference_architectures/50k_users.md
+9
-2
doc/administration/reference_architectures/5k_users.md
doc/administration/reference_architectures/5k_users.md
+9
-1
No files found.
doc/administration/reference_architectures/10k_users.md
View file @
c782dc88
...
...
@@ -1917,7 +1917,12 @@ To configure the Sidekiq nodes, on each one:
### Sidekiq configuration ###
#######################################
sidekiq
[
'listen_address'
]
=
"0.0.0.0"
sidekiq
[
'cluster'
]
=
true
# no need to set this after GitLab 13.0
# Set number of Sidekiq queue processes to the same number as available CPUs
sidekiq
[
'queue_groups'
]
=
[
'*'
]
*
4
# Set number of Sidekiq threads per queue process to the recommend number of 10
sidekiq
[
'max_concurrency'
]
=
10
#######################################
### Monitoring configuration ###
...
...
@@ -1962,7 +1967,9 @@ To configure the Sidekiq nodes, on each one:
1.
[
Reconfigure GitLab
](
../restart_gitlab.md#omnibus-gitlab-reconfigure
)
for the changes to take effect.
NOTE:
You can also run
[
multiple Sidekiq processes
](
../operations/extra_sidekiq_processes.md
)
.
If you find that the environment's Sidekiq job processing is slow with long queues,
more nodes can be added as required. You can also tune your Sidekiq nodes to
run
[
multiple Sidekiq processes
](
../operations/extra_sidekiq_processes.md
)
.
<div
align=
"right"
>
<a
type=
"button"
class=
"btn btn-default"
href=
"#setup-components"
>
...
...
doc/administration/reference_architectures/25k_users.md
View file @
c782dc88
...
...
@@ -1913,7 +1913,12 @@ To configure the Sidekiq nodes, on each one:
### Sidekiq configuration ###
#######################################
sidekiq
[
'listen_address'
]
=
"0.0.0.0"
sidekiq
[
'cluster'
]
=
true
# no need to set this after GitLab 13.0
# Set number of Sidekiq queue processes to the same number as available CPUs
sidekiq
[
'queue_groups'
]
=
[
'*'
]
*
4
# Set number of Sidekiq threads per queue process to the recommend number of 10
sidekiq
[
'max_concurrency'
]
=
10
#######################################
### Monitoring configuration ###
...
...
@@ -1958,7 +1963,9 @@ To configure the Sidekiq nodes, on each one:
1.
[
Reconfigure GitLab
](
../restart_gitlab.md#omnibus-gitlab-reconfigure
)
for the changes to take effect.
NOTE:
You can also run
[
multiple Sidekiq processes
](
../operations/extra_sidekiq_processes.md
)
.
If you find that the environment's Sidekiq job processing is slow with long queues,
more nodes can be added as required. You can also tune your Sidekiq nodes to
run
[
multiple Sidekiq processes
](
../operations/extra_sidekiq_processes.md
)
.
<div
align=
"right"
>
<a
type=
"button"
class=
"btn btn-default"
href=
"#setup-components"
>
...
...
doc/administration/reference_architectures/2k_users.md
View file @
c782dc88
...
...
@@ -642,6 +642,8 @@ On each node perform the following:
node_exporter
[
'listen_address'
]
=
'0.0.0.0:9100'
gitlab_workhorse
[
'prometheus_listen_addr'
]
=
'0.0.0.0:9229'
sidekiq
[
'listen_address'
]
=
"0.0.0.0"
# Set number of Sidekiq threads per queue process to the recommend number of 10
sidekiq
[
'max_concurrency'
]
=
10
puma
[
'listen'
]
=
'0.0.0.0'
# Add the monitoring node's IP address to the monitoring whitelist and allow it to
...
...
doc/administration/reference_architectures/3k_users.md
View file @
c782dc88
...
...
@@ -1595,6 +1595,12 @@ To configure the Sidekiq nodes, one each one:
#######################################
sidekiq
[
'listen_address'
]
=
"0.0.0.0"
# Set number of Sidekiq queue processes to the same number as available CPUs
sidekiq
[
'queue_groups'
]
=
[
'*'
]
*
2
# Set number of Sidekiq threads per queue process to the recommend number of 10
sidekiq
[
'max_concurrency'
]
=
10
#######################################
### Monitoring configuration ###
#######################################
...
...
@@ -1650,7 +1656,9 @@ To configure the Sidekiq nodes, one each one:
```
NOTE:
You can also run
[
multiple Sidekiq processes
](
../operations/extra_sidekiq_processes.md
)
.
If you find that the environment's Sidekiq job processing is slow with long queues,
more nodes can be added as required. You can also tune your Sidekiq nodes to
run
[
multiple Sidekiq processes
](
../operations/extra_sidekiq_processes.md
)
.
<div
align=
"right"
>
<a
type=
"button"
class=
"btn btn-default"
href=
"#setup-components"
>
...
...
doc/administration/reference_architectures/50k_users.md
View file @
c782dc88
...
...
@@ -1920,7 +1920,12 @@ To configure the Sidekiq nodes, on each one:
### Sidekiq configuration ###
#######################################
sidekiq
[
'listen_address'
]
=
"0.0.0.0"
sidekiq
[
'cluster'
]
=
true
# no need to set this after GitLab 13.0
# Set number of Sidekiq queue processes to the same number as available CPUs
sidekiq
[
'queue_groups'
]
=
[
'*'
]
*
4
# Set number of Sidekiq threads per queue process to the recommend number of 10
sidekiq
[
'max_concurrency'
]
=
10
#######################################
### Monitoring configuration ###
...
...
@@ -1965,7 +1970,9 @@ To configure the Sidekiq nodes, on each one:
1.
[
Reconfigure GitLab
](
../restart_gitlab.md#omnibus-gitlab-reconfigure
)
for the changes to take effect.
NOTE:
You can also run
[
multiple Sidekiq processes
](
../operations/extra_sidekiq_processes.md
)
.
If you find that the environment's Sidekiq job processing is slow with long queues,
more nodes can be added as required. You can also tune your Sidekiq nodes to
run
[
multiple Sidekiq processes
](
../operations/extra_sidekiq_processes.md
)
.
<div
align=
"right"
>
<a
type=
"button"
class=
"btn btn-default"
href=
"#setup-components"
>
...
...
doc/administration/reference_architectures/5k_users.md
View file @
c782dc88
...
...
@@ -1585,6 +1585,12 @@ To configure the Sidekiq nodes, one each one:
#######################################
sidekiq
[
'listen_address'
]
=
"0.0.0.0"
# Set number of Sidekiq queue processes to the same number as available CPUs
sidekiq
[
'queue_groups'
]
=
[
'*'
]
*
4
# Set number of Sidekiq threads per queue process to the recommend number of 10
sidekiq
[
'max_concurrency'
]
=
10
#######################################
### Monitoring configuration ###
#######################################
...
...
@@ -1639,7 +1645,9 @@ To configure the Sidekiq nodes, one each one:
```
NOTE:
You can also run
[
multiple Sidekiq processes
](
../operations/extra_sidekiq_processes.md
)
.
If you find that the environment's Sidekiq job processing is slow with long queues,
more nodes can be added as required. You can also tune your Sidekiq nodes to
run
[
multiple Sidekiq processes
](
../operations/extra_sidekiq_processes.md
)
.
<div
align=
"right"
>
<a
type=
"button"
class=
"btn btn-default"
href=
"#setup-components"
>
...
...
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