2017-03-02 18:43:39 -05:00
|
|
|
class StuckCiJobsWorker
|
2017-11-28 11:08:30 -05:00
|
|
|
include ApplicationWorker
|
2016-10-21 12:13:41 -04:00
|
|
|
include CronjobQueue
|
2015-10-21 05:29:47 -04:00
|
|
|
|
2017-03-01 07:56:54 -05:00
|
|
|
EXCLUSIVE_LEASE_KEY = 'stuck_ci_builds_worker_lease'.freeze
|
2017-02-08 21:29:38 -05:00
|
|
|
|
2017-02-07 08:00:46 -05:00
|
|
|
BUILD_RUNNING_OUTDATED_TIMEOUT = 1.hour
|
|
|
|
BUILD_PENDING_OUTDATED_TIMEOUT = 1.day
|
|
|
|
BUILD_PENDING_STUCK_TIMEOUT = 1.hour
|
2015-10-21 05:29:47 -04:00
|
|
|
|
|
|
|
def perform
|
2017-02-07 17:06:16 -05:00
|
|
|
return unless try_obtain_lease
|
|
|
|
|
|
|
|
Rails.logger.info "#{self.class}: Cleaning stuck builds"
|
2015-10-21 05:29:47 -04:00
|
|
|
|
2017-02-08 21:29:38 -05:00
|
|
|
drop :running, BUILD_RUNNING_OUTDATED_TIMEOUT
|
|
|
|
drop :pending, BUILD_PENDING_OUTDATED_TIMEOUT
|
2017-02-07 08:00:46 -05:00
|
|
|
drop_stuck :pending, BUILD_PENDING_STUCK_TIMEOUT
|
2017-02-08 21:29:38 -05:00
|
|
|
|
|
|
|
remove_lease
|
2017-02-07 08:00:46 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-02-07 17:06:16 -05:00
|
|
|
def try_obtain_lease
|
2017-03-01 07:56:54 -05:00
|
|
|
@uuid = Gitlab::ExclusiveLease.new(EXCLUSIVE_LEASE_KEY, timeout: 30.minutes).try_obtain
|
2017-02-07 17:06:16 -05:00
|
|
|
end
|
|
|
|
|
2017-02-08 21:29:38 -05:00
|
|
|
def remove_lease
|
|
|
|
Gitlab::ExclusiveLease.cancel(EXCLUSIVE_LEASE_KEY, @uuid)
|
|
|
|
end
|
|
|
|
|
2017-02-07 08:00:46 -05:00
|
|
|
def drop(status, timeout)
|
|
|
|
search(status, timeout) do |build|
|
|
|
|
drop_build :outdated, build, status, timeout
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def drop_stuck(status, timeout)
|
|
|
|
search(status, timeout) do |build|
|
|
|
|
return unless build.stuck?
|
2017-11-14 04:02:39 -05:00
|
|
|
|
2017-02-07 08:00:46 -05:00
|
|
|
drop_build :stuck, build, status, timeout
|
2015-10-21 05:29:47 -04:00
|
|
|
end
|
2017-02-07 08:00:46 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def search(status, timeout)
|
2017-11-21 13:49:10 -05:00
|
|
|
loop do
|
|
|
|
jobs = Ci::Build.where(status: status)
|
|
|
|
.where('ci_builds.updated_at < ?', timeout.ago)
|
2017-11-21 12:44:52 -05:00
|
|
|
.includes(:tags, :runner, project: :namespace)
|
2017-11-21 13:49:10 -05:00
|
|
|
.limit(100)
|
|
|
|
.to_a
|
|
|
|
break if jobs.empty?
|
|
|
|
|
|
|
|
jobs.each do |job|
|
|
|
|
yield(job)
|
2017-11-21 12:44:52 -05:00
|
|
|
end
|
2017-02-07 08:00:46 -05:00
|
|
|
end
|
|
|
|
end
|
2015-11-23 07:49:40 -05:00
|
|
|
|
2017-02-07 08:00:46 -05:00
|
|
|
def drop_build(type, build, status, timeout)
|
2017-02-07 17:06:16 -05:00
|
|
|
Rails.logger.info "#{self.class}: Dropping #{type} build #{build.id} for runner #{build.runner_id} (status: #{status}, timeout: #{timeout})"
|
2017-02-07 17:08:02 -05:00
|
|
|
Gitlab::OptimisticLocking.retry_lock(build, 3) do |b|
|
2017-08-31 09:03:41 -04:00
|
|
|
b.drop(:stuck_or_timeout_failure)
|
2017-02-07 17:08:02 -05:00
|
|
|
end
|
2015-10-21 05:29:47 -04:00
|
|
|
end
|
|
|
|
end
|