gitlab-org--gitlab-foss/bin
Yorick Peterse 97731760d7
Re-organize queues to use for Sidekiq
Dumping too many jobs in the same queue (e.g. the "default" queue) is a
dangerous setup. Jobs that take a long time to process can effectively
block any other work from being performed given there are enough of
these jobs.

Furthermore it becomes harder to monitor the jobs as a single queue
could contain jobs for different workers. In such a setup the only
reliable way of getting counts per job is to iterate over all jobs in a
queue, which is a rather time consuming process.

By using separate queues for various workers we have better control over
throughput, we can add weight to queues, and we can monitor queues
better. Some workers still use the same queue whenever their work is
related. For example, the various CI pipeline workers use the same
"pipeline" queue.

This commit includes a Rails migration that moves Sidekiq jobs from the
old queues to the new ones. This migration also takes care of doing the
inverse if ever needed. This does require downtime as otherwise new jobs
could be scheduled in the old queues after this migration completes.

This commit also includes an RSpec test that blacklists the use of the
"default" queue and ensures cron workers use the "cronjob" queue.

Fixes gitlab-org/gitlab-ce#23370
2016-10-21 18:17:07 +02:00
..
ci Rails update to 4.2.4 2015-11-25 18:18:44 +02:00
background_jobs Re-organize queues to use for Sidekiq 2016-10-21 18:17:07 +02:00
bundle Added executable file permission to binstubs 2014-02-20 12:56:22 +01:00
check Move from script to bin directory. 2014-05-27 17:14:41 +02:00
daemon_with_pidfile Properly daemonize the mail_room process 2015-08-27 16:35:00 +02:00
mail_room Properly daemonize the mail_room process 2015-08-27 16:35:00 +02:00
parallel-rsync-repos Add 'resume' capability to parallel-rsync-repos 2015-12-08 15:08:22 +01:00
pkgr_before_precompile.sh Use new way of defining services on packager.io 2015-01-18 17:55:48 +00:00
rails Re-generate Spring binstubs for updated version of Spring 2016-04-22 16:00:56 -04:00
rake Re-generate Spring binstubs for updated version of Spring 2016-04-22 16:00:56 -04:00
rspec Re-generate Spring binstubs for updated version of Spring 2016-04-22 16:00:56 -04:00
setup Use rake db:reset instead of db:setup 2016-04-14 15:53:54 +02:00
spinach Re-generate Spring binstubs for updated version of Spring 2016-04-22 16:00:56 -04:00
spring Use ENABLE_SPRING to use it by default 2016-06-17 16:54:55 +02:00
teaspoon Re-generate Spring binstubs for updated version of Spring 2016-04-22 16:00:56 -04:00
upgrade.rb Rails update to 4.2.4 2015-11-25 18:18:44 +02:00
web Use 'exec' in Unicorn and Sidekiq launch scripts 2016-04-28 12:11:08 +02:00