debian-mirror-gitlab/db/post_migrate/20230508150219_reschedule_evidences_handling_unicode.rb
2023-07-09 08:55:56 +05:30

33 lines
901 B
Ruby

# frozen_string_literal: true
# rubocop:disable BackgroundMigration/MissingDictionaryFile
class RescheduleEvidencesHandlingUnicode < Gitlab::Database::Migration[2.1]
restrict_gitlab_migration gitlab_schema: :gitlab_main
MIGRATION = 'MigrateEvidencesForVulnerabilityFindings'
DELAY_INTERVAL = 2.minutes
SUB_BATCH_SIZE = 250
BATCH_SIZE = 4000
MAX_BATCH_SIZE = 8000
def up
delete_batched_background_migration(MIGRATION, :vulnerability_occurrences, :id, [])
queue_batched_background_migration(
MIGRATION,
:vulnerability_occurrences,
:id,
job_interval: DELAY_INTERVAL,
batch_size: BATCH_SIZE,
sub_batch_size: SUB_BATCH_SIZE,
max_batch_size: MAX_BATCH_SIZE
)
end
def down
delete_batched_background_migration(MIGRATION, :vulnerability_occurrences, :id, [])
end
end
# rubocop:enable BackgroundMigration/MissingDictionaryFile