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
6e9a1c9d
Commit
6e9a1c9d
authored
Nov 22, 2019
by
Keven Hughes
Committed by
Achilleas Pipinellis
Nov 22, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Docs: differentiate sidekiq max_/concurrency
parent
effc80e2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
2 deletions
+16
-2
doc/administration/operations/extra_sidekiq_processes.md
doc/administration/operations/extra_sidekiq_processes.md
+16
-2
No files found.
doc/administration/operations/extra_sidekiq_processes.md
View file @
6e9a1c9d
...
...
@@ -126,12 +126,26 @@ queues will use three threads in total.
## Limiting concurrency
To limit the concurrency of the Sidekiq process
es
:
To limit the concurrency of the Sidekiq process:
1.
Edit
`/etc/gitlab/gitlab.rb`
and add:
```
ruby
sidekiq_cluster
[
'concurrency'
]
=
25
sidekiq
[
'concurrency'
]
=
25
```
1.
Save the file and reconfigure GitLab for the changes to take effect:
```
sh
sudo
gitlab-ctl reconfigure
```
To limit the max concurrency of the Sidekiq cluster processes:
1.
Edit
`/etc/gitlab/gitlab.rb`
and add:
```
ruby
sidekiq_cluster
[
'max_concurrency'
]
=
25
```
1.
Save the file and reconfigure GitLab for the changes to take effect:
...
...
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