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

parallel_importer.rb « github_import « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b02b123c98eb008f928a5a05b477ac5c6489cc9b (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
# frozen_string_literal: true

module Gitlab
  module GithubImport
    # The ParallelImporter schedules the importing of a GitHub project using
    # Sidekiq.
    class ParallelImporter
      attr_reader :project

      def self.async?
        true
      end

      def self.imports_repository?
        true
      end

      def initialize(project)
        @project = project
      end

      def execute
        jid = generate_jid

        # The original import JID is the JID of the RepositoryImportWorker job,
        # which will be removed once that job completes. Reusing that JID could
        # result in StuckImportJobsWorker marking the job as stuck before we get
        # to running Stage::ImportRepositoryWorker.
        #
        # We work around this by setting the JID to a custom generated one, then
        # refreshing it in the various stages whenever necessary.
        Gitlab::SidekiqStatus
          .set(jid, StuckImportJobsWorker::IMPORT_JOBS_EXPIRATION)

        project.ensure_import_state
        project.import_state&.update_column(:jid, jid)

        Stage::ImportRepositoryWorker
          .perform_async(project.id)

        true
      end

      def generate_jid
        "github-importer/#{project.id}"
      end
    end
  end
end