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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-09-20 14:18:08 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-09-20 14:18:08 +0300
commit5afcbe03ead9ada87621888a31a62652b10a7e4f (patch)
tree9918b67a0d0f0bafa6542e839a8be37adf73102d /db/post_migrate/20230811103457_queue_backfill_nuget_normalized_version.rb
parentc97c0201564848c1f53226fe19d71fdcc472f7d0 (diff)
Add latest changes from gitlab-org/gitlab@16-4-stable-eev16.4.0-rc42
Diffstat (limited to 'db/post_migrate/20230811103457_queue_backfill_nuget_normalized_version.rb')
-rw-r--r--db/post_migrate/20230811103457_queue_backfill_nuget_normalized_version.rb25
1 files changed, 25 insertions, 0 deletions
diff --git a/db/post_migrate/20230811103457_queue_backfill_nuget_normalized_version.rb b/db/post_migrate/20230811103457_queue_backfill_nuget_normalized_version.rb
new file mode 100644
index 00000000000..52e2b7c36eb
--- /dev/null
+++ b/db/post_migrate/20230811103457_queue_backfill_nuget_normalized_version.rb
@@ -0,0 +1,25 @@
+# frozen_string_literal: true
+
+class QueueBackfillNugetNormalizedVersion < Gitlab::Database::Migration[2.1]
+ restrict_gitlab_migration gitlab_schema: :gitlab_main
+
+ MIGRATION = "BackfillNugetNormalizedVersion"
+ DELAY_INTERVAL = 2.minutes
+ BATCH_SIZE = 6000
+ SUB_BATCH_SIZE = 250
+
+ def up
+ queue_batched_background_migration(
+ MIGRATION,
+ :packages_nuget_metadata,
+ :package_id,
+ job_interval: DELAY_INTERVAL,
+ batch_size: BATCH_SIZE,
+ sub_batch_size: SUB_BATCH_SIZE
+ )
+ end
+
+ def down
+ delete_batched_background_migration(MIGRATION, :packages_nuget_metadata, :package_id, [])
+ end
+end