summaryrefslogtreecommitdiff
path: root/app/services/ci/stuck_builds/drop_running_service.rb
blob: a79224cc231945d899d4be98e48d3baecc929df0 (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
# frozen_string_literal: true

module Ci
  module StuckBuilds
    class DropRunningService
      include DropHelpers

      BUILD_RUNNING_OUTDATED_TIMEOUT = 1.hour

      def execute
        Gitlab::AppLogger.info "#{self.class}: Cleaning running, timed-out builds"

        drop(running_timed_out_builds, failure_reason: :stuck_or_timeout_failure)
      end

      private

      def running_timed_out_builds
        if Feature.enabled?(:ci_new_query_for_running_stuck_jobs, default_enabled: :yaml)
          Ci::Build
            .running
            .created_at_before(BUILD_RUNNING_OUTDATED_TIMEOUT.ago)
            .updated_at_before(BUILD_RUNNING_OUTDATED_TIMEOUT.ago)
            .order(created_at: :asc, project_id: :asc) # rubocop:disable CodeReuse/ActiveRecord
        else
          Ci::Build.running.updated_at_before(BUILD_RUNNING_OUTDATED_TIMEOUT.ago)
        end
      end
    end
  end
end