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

relation_export_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: 531edc6c7a758ad277a4fe875d2209dcc45af667 (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
# frozen_string_literal: true

module BulkImports
  class RelationExportWorker
    include ApplicationWorker
    include ExceptionBacktrace

    idempotent!
    deduplicate :until_executed
    loggable_arguments 2, 3
    data_consistency :always
    feature_category :importers
    sidekiq_options status_expiration: StuckExportJobsWorker::EXPORT_JOBS_EXPIRATION
    worker_resource_boundary :memory

    def perform(user_id, portable_id, portable_class, relation, batched = false)
      user = User.find(user_id)
      portable = portable(portable_id, portable_class)
      config = BulkImports::FileTransfer.config_for(portable)

      if Gitlab::Utils.to_boolean(batched) && config.batchable_relation?(relation)
        BatchedRelationExportService.new(user, portable, relation, jid).execute
      else
        RelationExportService.new(user, portable, relation, jid).execute
      end
    end

    private

    def portable(portable_id, portable_class)
      portable_class.classify.constantize.find(portable_id)
    end
  end
end