sidekiq_queues.yml 2.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
# This configuration file should be exclusively used to set queue settings for
# Sidekiq. Any other setting should be specified using the Sidekiq CLI or the
# Sidekiq Ruby API (see config/initializers/sidekiq.rb).
---
# All the queues to process and their weights. Every queue _must_ have a weight
# defined.
#
# The available weights are as follows
#
# 1: low priority
# 2: medium priority
# 3: high priority
# 5: _super_ high priority, this should only be used for _very_ important queues
#
# As per http://stackoverflow.com/a/21241357/290102 the formula for calculating
# the likelihood of a job being popped off a queue (given all queues have work
# to perform) is:
#
#     chance = (queue weight / total weight of all queues) * 100
:queues:
  - [post_receive, 5]
  - [merge, 5]
  - [update_merge_requests, 3]
24
  - [process_commit, 3]
25
  - [new_note, 2]
26 27
  - [new_issue, 2]
  - [new_merge_request, 2]
28
  - [pipeline_processing, 5]
29
  - [pipeline_creation, 4]
30 31
  - [pipeline_default, 3]
  - [pipeline_cache, 3]
S
Shinya Maeda 已提交
32
  - [deployment, 3]
33
  - [pipeline_hooks, 2]
34 35 36
  - [gitlab_shell, 2]
  - [email_receiver, 2]
  - [emails_on_push, 2]
37
  - [mailers, 2]
38
  - [mail_scheduler, 2]
39
  - [invalid_gpg_signature_update, 2]
A
Alexis Reigel 已提交
40
  - [create_gpg_signature, 2]
D
Douwe Maan 已提交
41
  - [rebase, 2]
42
  - [upload_checksum, 1]
43 44
  - [repository_fork, 1]
  - [repository_import, 1]
45
  - [github_importer, 1]
D
Douwe Maan 已提交
46
  - [github_import_advance_stage, 1]
47 48
  - [project_service, 1]
  - [delete_user, 1]
49
  - [todos_destroyer, 1]
50
  - [delete_container_repository, 1]
51
  - [delete_merged_branches, 1]
52
  - [authorized_projects, 1]
53 54 55
  - [expire_build_instance_artifacts, 1]
  - [group_destroy, 1]
  - [irker, 1]
56
  - [namespaceless_project_destroy, 1]
57 58 59
  - [project_cache, 1]
  - [project_destroy, 1]
  - [project_export, 1]
A
Alexander Randa 已提交
60
  - [web_hook, 1]
61 62
  - [repository_check, 1]
  - [git_garbage_collect, 1]
63
  - [reactive_caching, 1]
64 65
  - [cronjob, 1]
  - [default, 1]
K
Kamil Trzcinski 已提交
66
  - [pages, 1]
67
  - [system_hook_push, 1]
J
James Lopez 已提交
68
  - [propagate_service_template, 1]
69
  - [background_migration, 1]
70
  - [gcp_cluster, 1]
71 72
  - [project_migrate_hashed_storage, 1]
  - [storage_migrator, 1]
73
  - [pages_domain_verification, 1]
74
  - [object_storage_upload, 1]
M
Micaël Bergeron 已提交
75
  - [object_storage, 1]
76
  - [plugin, 1]
77
  - [pipeline_background, 1]
78 79
  - [repository_update_remote_mirror, 1]
  - [repository_remove_remote, 1]
80
  - [create_note_diff_file, 1]
81
  - [delete_diff_files, 1]
82
  - [detect_repository_languages, 1]
83
  - [auto_devops, 2]
84
  - [object_pool, 1]
85
  - [repository_cleanup, 1]
86
  - [delete_stored_files, 1]