I am running a small GitLab server for my personal use, but GitLab default concurrency settings up to 25.
So I try to update the max concurrency to free server resource.
Update Configuration
1 |
vi /etc/gitlab/gitlab.rb |
Add or update the value
1 2 3 4 5 |
################## # GitLab Sidekiq # ################## sidekiq['concurrency'] = 5 |
Restart the Service
1 2 |
gitlab-ctl reconfigure gitlab-ctl restart sidekiq |