summaryrefslogtreecommitdiff
path: root/db/post_migrate/20220131000001_schedule_trace_expiry_removal.rb
blob: 8e282a9b8c2f416b8d1a8e6e15a3077f54be8247 (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
54
55
# frozen_string_literal: true

class ScheduleTraceExpiryRemoval < Gitlab::Database::Migration[1.0]
  MIGRATION = 'RemoveAllTraceExpirationDates'
  BATCH_SIZE = 100_000
  DELAY_INTERVAL = 4.minutes

  disable_ddl_transaction!

  # Stubbed class to connect to the CI database
  # connects_to has to be called in abstract classes.
  class MultiDbAdaptableClass < ActiveRecord::Base
    self.abstract_class = true

    if Gitlab::Database.has_config?(:ci)
      connects_to database: { writing: :ci, reading: :ci }
    end
  end

  # Stubbed class to access the ci_job_artifacts table
  class JobArtifact < MultiDbAdaptableClass
    include EachBatch

    self.table_name = 'ci_job_artifacts'

    TARGET_TIMESTAMPS = [
      Date.new(2021, 04, 22).midnight.utc,
      Date.new(2021, 05, 22).midnight.utc,
      Date.new(2021, 06, 22).midnight.utc,
      Date.new(2022, 01, 22).midnight.utc,
      Date.new(2022, 02, 22).midnight.utc,
      Date.new(2022, 03, 22).midnight.utc,
      Date.new(2022, 04, 22).midnight.utc
    ].freeze

    scope :in_targeted_timestamps, -> { where(expire_at: TARGET_TIMESTAMPS) }
    scope :traces, -> { where(file_type: 3) }
  end

  def up
    return unless Gitlab.com?

    queue_background_migration_jobs_by_range_at_intervals(
      JobArtifact.traces.in_targeted_timestamps,
      MIGRATION,
      DELAY_INTERVAL,
      batch_size: BATCH_SIZE,
      track_jobs: true
    )
  end

  def down
    # no-op
  end
end