summaryrefslogtreecommitdiff
path: root/db/post_migrate/20220204095121_backfill_namespace_statistics_with_dependency_proxy_size.rb
blob: 49c9efc497caf8ca4c0966c11ab97916758e692b (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
# frozen_string_literal: true

class BackfillNamespaceStatisticsWithDependencyProxySize < Gitlab::Database::Migration[1.0]
  DELAY_INTERVAL = 2.minutes.to_i
  BATCH_SIZE = 500
  MIGRATION = 'PopulateNamespaceStatistics'

  disable_ddl_transaction!

  def up
    groups = exec_query <<~SQL
      SELECT dependency_proxy_manifests.group_id FROM dependency_proxy_manifests
      UNION
      SELECT dependency_proxy_blobs.group_id from dependency_proxy_blobs
    SQL

    groups.rows.flatten.in_groups_of(BATCH_SIZE, false).each_with_index do |group_ids, index|
      migrate_in(index * DELAY_INTERVAL, MIGRATION, [group_ids, [:dependency_proxy_size]])
    end
  end

  def down
    # no-op
  end
end