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

20200917135802_remove_duplicated_cs_findings_without_vulnerability_id.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0e161b5de78ec0fa1a6849293b364959908c1dac (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
# frozen_string_literal: true

class RemoveDuplicatedCsFindingsWithoutVulnerabilityId < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  BATCH_SIZE = 1_000

  INTERVAL = 2.minutes

  # 1_500 records will be deleted
  def up
    return unless Gitlab.com?

    migration = Gitlab::BackgroundMigration::RemoveDuplicatedCsFindingsWithoutVulnerabilityId
    migration_name = migration.to_s.demodulize
    relation = migration::Finding.container_scanning.with_broken_fingerprint.where(vulnerability_id: nil)
    queue_background_migration_jobs_by_range_at_intervals(relation,
                                                            migration_name,
                                                            INTERVAL,
                                                            batch_size: BATCH_SIZE)
  end

  def down
    # no-op
  end
end