debian-mirror-gitlab/db/post_migrate/20220125122640_schedule_populate_topics_non_private_projects_count.rb
2022-04-04 11:22:00 +05:30

24 lines
498 B
Ruby

# frozen_string_literal: true
class SchedulePopulateTopicsNonPrivateProjectsCount < Gitlab::Database::Migration[1.0]
MIGRATION = 'PopulateTopicsNonPrivateProjectsCount'
BATCH_SIZE = 10_000
DELAY_INTERVAL = 2.minutes
disable_ddl_transaction!
def up
queue_background_migration_jobs_by_range_at_intervals(
define_batchable_model('topics'),
MIGRATION,
DELAY_INTERVAL,
batch_size: BATCH_SIZE,
track_jobs: true
)
end
def down
# no-op
end
end