97731760d7
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
57 lines
1.9 KiB
Ruby
57 lines
1.9 KiB
Ruby
class PostReceive
|
|
include Sidekiq::Worker
|
|
include DedicatedSidekiqQueue
|
|
|
|
def perform(repo_path, identifier, changes)
|
|
if path = Gitlab.config.repositories.storages.find { |p| repo_path.start_with?(p[1].to_s) }
|
|
repo_path.gsub!(path[1].to_s, "")
|
|
else
|
|
log("Check gitlab.yml config for correct repositories.storages values. No repository storage path matches \"#{repo_path}\"")
|
|
end
|
|
|
|
changes = Base64.decode64(changes) unless changes.include?(' ')
|
|
# Use Sidekiq.logger so arguments can be correlated with execution
|
|
# time and thread ID's.
|
|
Sidekiq.logger.info "changes: #{changes.inspect}" if ENV['SIDEKIQ_LOG_ARGUMENTS']
|
|
post_received = Gitlab::GitPostReceive.new(repo_path, identifier, changes)
|
|
|
|
if post_received.project.nil?
|
|
log("Triggered hook for non-existing project with full path \"#{repo_path} \"")
|
|
return false
|
|
end
|
|
|
|
if post_received.wiki?
|
|
# Nothing defined here yet.
|
|
elsif post_received.regular_project?
|
|
process_project_changes(post_received)
|
|
else
|
|
log("Triggered hook for unidentifiable repository type with full path \"#{repo_path} \"")
|
|
false
|
|
end
|
|
end
|
|
|
|
def process_project_changes(post_received)
|
|
post_received.changes.each do |change|
|
|
oldrev, newrev, ref = change.strip.split(' ')
|
|
|
|
@user ||= post_received.identify(newrev)
|
|
|
|
unless @user
|
|
log("Triggered hook for non-existing user \"#{post_received.identifier} \"")
|
|
return false
|
|
end
|
|
|
|
if Gitlab::Git.tag_ref?(ref)
|
|
GitTagPushService.new(post_received.project, @user, oldrev: oldrev, newrev: newrev, ref: ref).execute
|
|
elsif Gitlab::Git.branch_ref?(ref)
|
|
GitPushService.new(post_received.project, @user, oldrev: oldrev, newrev: newrev, ref: ref).execute
|
|
end
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def log(message)
|
|
Gitlab::GitLogger.error("POST-RECEIVE: #{message}")
|
|
end
|
|
end
|