Commit cd617818 authored by Sean McGivern's avatar Sean McGivern

Merge branch 'bbodenmiller-master-patch-70953' into 'master'

Clarify sidekiq negate setting

See merge request gitlab-org/gitlab!66412
parents 2fb26f15 9e593aad
...@@ -95,14 +95,14 @@ To view the Sidekiq processes in GitLab: ...@@ -95,14 +95,14 @@ To view the Sidekiq processes in GitLab:
## Negate settings ## Negate settings
To have the additional Sidekiq processes work on every queue **except** the ones To have the Sidekiq process work on every queue **except** the ones
you list. In this example, we exclude all import-related jobs from a Sidekiq node: you list. In this example, we exclude all import-related jobs from a Sidekiq node:
1. After you follow the steps for [starting extra processes](#start-multiple-processes), 1. Edit `/etc/gitlab/gitlab.rb` and add:
edit `/etc/gitlab/gitlab.rb` and add:
```ruby ```ruby
sidekiq['negate'] = true sidekiq['negate'] = true
sidekiq['queue_selector'] = true
sidekiq['queue_groups'] = [ sidekiq['queue_groups'] = [
"feature_category=importers" "feature_category=importers"
] ]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment