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:
Diffstat (limited to 'db/post_migrate/20230125093723_rebalance_partition_id_ci_pipeline.rb')
-rw-r--r--db/post_migrate/20230125093723_rebalance_partition_id_ci_pipeline.rb23
1 files changed, 2 insertions, 21 deletions
diff --git a/db/post_migrate/20230125093723_rebalance_partition_id_ci_pipeline.rb b/db/post_migrate/20230125093723_rebalance_partition_id_ci_pipeline.rb
index aaea55ce331..c7a7d966911 100644
--- a/db/post_migrate/20230125093723_rebalance_partition_id_ci_pipeline.rb
+++ b/db/post_migrate/20230125093723_rebalance_partition_id_ci_pipeline.rb
@@ -1,30 +1,11 @@
# frozen_string_literal: true
class RebalancePartitionIdCiPipeline < Gitlab::Database::Migration[2.1]
- MIGRATION = 'RebalancePartitionId'
- DELAY_INTERVAL = 2.minutes
- TABLE = :ci_pipelines
- BATCH_SIZE = 2_000
- SUB_BATCH_SIZE = 200
-
- restrict_gitlab_migration gitlab_schema: :gitlab_ci
-
def up
- return unless Gitlab.com?
-
- queue_batched_background_migration(
- MIGRATION,
- TABLE,
- :id,
- job_interval: DELAY_INTERVAL,
- batch_size: BATCH_SIZE,
- sub_batch_size: SUB_BATCH_SIZE
- )
+ # no-op
end
def down
- return unless Gitlab.com?
-
- delete_batched_background_migration(MIGRATION, TABLE, :id, [])
+ # no-op
end
end