Skip to content

Tag workers that need their own queue

Sean McGivern requested to merge tag-workers-that-need-their-own-queue into master

Some workers can't be re-routed to a queue shared with other workers because they - or another worker - depends on specific information about that queue. For now, we'll tag those so we know which workers they are.

This means that we can set the following routing rule at the top of our routing rules:

["tags=needs_own_queue", nil]

And then these workers will never be redirected by another rule.

See gitlab-com/gl-infra/scalability#1087 (closed).

Merge request reports