summaryrefslogtreecommitdiff
path: root/config/sidekiq_queues.yml
blob: 6e12eed692f0a07aeca2c55d0763aaa3fa3ab569 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
# 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]
  - [process_commit, 3]
  - [new_note, 2]
  - [new_issue, 2]
  - [notifications, 2]
  - [new_merge_request, 2]
  - [pipeline_processing, 5]
  - [pipeline_creation, 4]
  - [pipeline_default, 3]
  - [pipeline_cache, 3]
  - [deployment, 3]
  - [auto_merge, 3]
  - [pipeline_hooks, 2]
  - [gitlab_shell, 2]
  - [email_receiver, 2]
  - [emails_on_push, 2]
  - [mailers, 2]
  - [mail_scheduler, 2]
  - [invalid_gpg_signature_update, 2]
  - [create_gpg_signature, 2]
  - [rebase, 2]
  - [upload_checksum, 1]
  - [repository_fork, 1]
  - [repository_import, 1]
  - [github_importer, 1]
  - [github_import_advance_stage, 1]
  - [project_service, 1]
  - [delete_user, 1]
  - [todos_destroyer, 1]
  - [delete_merged_branches, 1]
  - [authorized_projects, 2]
  - [expire_build_instance_artifacts, 1]
  - [group_destroy, 1]
  - [irker, 1]
  - [namespaceless_project_destroy, 1]
  - [project_cache, 1]
  - [project_destroy, 1]
  - [project_export, 1]
  - [web_hook, 1]
  - [repository_check, 1]
  - [git_garbage_collect, 1]
  - [reactive_caching, 1]
  - [cronjob, 1]
  - [default, 1]
  - [pages, 1]
  - [system_hook_push, 1]
  - [propagate_service_template, 1]
  - [background_migration, 1]
  - [gcp_cluster, 1]
  - [project_migrate_hashed_storage, 1]
  - [project_rollback_hashed_storage, 1]
  - [hashed_storage, 1]
  - [pages_domain_verification, 1]
  - [pages_domain_ssl_renewal, 1]
  - [object_storage_upload, 1]
  - [object_storage, 1]
  - [plugin, 1]
  - [pipeline_background, 1]
  - [repository_update_remote_mirror, 1]
  - [repository_remove_remote, 1]
  - [create_note_diff_file, 1]
  - [delete_diff_files, 1]
  - [detect_repository_languages, 1]
  - [auto_devops, 2]
  - [container_repository, 1]
  - [object_pool, 1]
  - [repository_cleanup, 1]
  - [delete_stored_files, 1]
  - [remote_mirror_notification, 2]
  - [project_daily_statistics, 1]
  - [import_issues_csv, 2]
  - [chat_notification, 2]
  - [migrate_external_diffs, 1]
  - [update_project_statistics, 1]
  - [phabricator_import_import_tasks, 1]
  - [update_namespace_statistics, 1]
  - [chaos, 2]
  - [create_evidence, 2]
  - [group_export, 1]
  - [self_monitoring_project_create, 2]
  - [self_monitoring_project_delete, 2]

  # EE-specific queues
  - [analytics, 1]
  - [ldap_group_sync, 2]
  - [create_github_webhook, 2]
  - [geo, 1]
  - [repository_update_mirror, 1]
  - [repository_push_audit_event, 1]
  - [new_epic, 2]
  - [project_import_schedule, 1]
  - [project_update_repository_storage, 1]
  - [admin_emails, 1]
  - [elastic_batch_project_indexer, 1]
  - [elastic_indexer, 1]
  - [elastic_full_index, 1]
  - [elastic_commit_indexer, 1]
  - [elastic_namespace_indexer, 1]
  - [elastic_namespace_rollout, 1]
  - [export_csv, 1]
  - [incident_management, 2]
  - [jira_connect, 1]
  - [update_external_pull_requests, 3]
  - [refresh_license_compliance_checks, 2]
  - [design_management_new_version, 1]
  - [epics, 2]
  - [personal_access_tokens, 1]
  - [adjourned_project_deletion, 1]