summaryrefslogtreecommitdiff
path: root/lib/tasks/gitlab/uploads/legacy.rake
blob: 18fb8afe455ed6bcbacc8d023bff6a36f475f5ff (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
# frozen_string_literal: true

namespace :gitlab do
  namespace :uploads do
    namespace :legacy do
      desc "GitLab | Uploads | Migrate all legacy attachments"
      task migrate: :environment do
        class Upload < ApplicationRecord
          self.table_name = 'uploads'

          include ::EachBatch
        end

        migration = 'LegacyUploadsMigrator'.freeze
        batch_size = 5000
        delay_interval = 5.minutes.to_i

        Upload.where(uploader: 'AttachmentUploader').each_batch(of: batch_size) do |relation, index|
          start_id, end_id = relation.pluck('MIN(id), MAX(id)').first
          delay = index * delay_interval

          BackgroundMigrationWorker.perform_in(delay, migration, [start_id, end_id])
        end
      end
    end
  end
end