Welcome to mirror list, hosted at ThFree Co, Russian Federation.

stuck_import_worker.rb « bulk_imports « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cb4e10a29b2f13ca0af174155d8e879d6155f6ac (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
# frozen_string_literal: true

module BulkImports
  class StuckImportWorker
    include ApplicationWorker

    # This worker does not schedule other workers that require context.
    include CronjobQueue # rubocop:disable Scalability/CronWorkerContext

    idempotent!
    data_consistency :always

    feature_category :importers

    # Using Keyset pagination for scopes that involve timestamp indexes
    def perform
      Gitlab::Pagination::Keyset::Iterator.new(scope: bulk_import_scope).each_batch do |imports|
        imports.each do |import|
          logger.error(message: 'BulkImport stale', bulk_import_id: import.id)
          import.cleanup_stale
        end
      end

      Gitlab::Pagination::Keyset::Iterator.new(scope: entity_scope).each_batch do |entities|
        entities.each do |entity|
          ApplicationRecord.transaction do
            logger.with_entity(entity).error(
              message: 'BulkImports::Entity stale'
            )

            entity.cleanup_stale

            entity.trackers.find_each do |tracker|
              tracker.cleanup_stale
            end
          end
        end
      end
    end

    def logger
      @logger ||= Logger.build
    end

    def bulk_import_scope
      BulkImport.stale.order_by_updated_at_and_id(:asc)
    end

    def entity_scope
      BulkImports::Entity.with_trackers.stale.order_by_updated_at_and_id(:asc)
    end
  end
end