debian-mirror-gitlab/db/post_migrate/20220301093434_backfill_all_project_namespaces.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
660 B
Ruby
Raw Normal View History

2022-05-07 20:08:51 +05:30
# frozen_string_literal: true
class BackfillAllProjectNamespaces < Gitlab::Database::Migration[1.0]
MIGRATION = 'ProjectNamespaces::BackfillProjectNamespaces'
DELAY_INTERVAL = 2.minutes
BATCH_SIZE = 1_000
MAX_BATCH_SIZE = 5_000
SUB_BATCH_SIZE = 10
disable_ddl_transaction!
def up
queue_batched_background_migration(
MIGRATION,
:projects,
:id,
nil,
'up',
job_interval: DELAY_INTERVAL,
batch_size: BATCH_SIZE,
max_batch_size: MAX_BATCH_SIZE,
sub_batch_size: SUB_BATCH_SIZE
)
end
def down
2022-07-23 23:45:48 +05:30
delete_batched_background_migration(MIGRATION, :projects, :id, [nil, 'up'])
2022-05-07 20:08:51 +05:30
end
end