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

backfill_vulnerability_reads_cluster_agent.rb « background_migration « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 728b60f7a0e45719b274a72843d942cc36b040f3 (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

module Gitlab
  module BackgroundMigration
    # Backfills the `vulnerability_reads.casted_cluster_agent_id` column
    class BackfillVulnerabilityReadsClusterAgent < Gitlab::BackgroundMigration::BatchedMigrationJob
      CLUSTER_AGENTS_JOIN = <<~SQL
        INNER JOIN cluster_agents
        ON CAST(vulnerability_reads.cluster_agent_id AS bigint) = cluster_agents.id AND
        vulnerability_reads.project_id = cluster_agents.project_id
      SQL

      RELATION = ->(relation) do
        relation
          .where(report_type: 7)
      end

      def perform
        each_sub_batch(
          operation_name: :update_all,
          batching_scope: RELATION
        ) do |sub_batch|
          sub_batch
            .joins(CLUSTER_AGENTS_JOIN)
            .update_all('casted_cluster_agent_id = CAST(vulnerability_reads.cluster_agent_id AS bigint)')
        end
      end
    end
  end
end