summaryrefslogtreecommitdiff
path: root/db/post_migrate/20230214154101_fix_partition_ids_on_ci_sources_pipelines.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20230214154101_fix_partition_ids_on_ci_sources_pipelines.rb')
-rw-r--r--db/post_migrate/20230214154101_fix_partition_ids_on_ci_sources_pipelines.rb36
1 files changed, 36 insertions, 0 deletions
diff --git a/db/post_migrate/20230214154101_fix_partition_ids_on_ci_sources_pipelines.rb b/db/post_migrate/20230214154101_fix_partition_ids_on_ci_sources_pipelines.rb
new file mode 100644
index 00000000000..c05b759c2d0
--- /dev/null
+++ b/db/post_migrate/20230214154101_fix_partition_ids_on_ci_sources_pipelines.rb
@@ -0,0 +1,36 @@
+# frozen_string_literal: true
+
+class FixPartitionIdsOnCiSourcesPipelines < Gitlab::Database::Migration[2.1]
+ disable_ddl_transaction!
+ restrict_gitlab_migration gitlab_schema: :gitlab_ci
+
+ BATCH_SIZE = 50
+
+ def up
+ return unless Gitlab.com?
+
+ model = define_batchable_model(:ci_sources_pipelines)
+
+ batch_update_records(model, :partition_id, from: 101, to: 100, source_partition_id: 100)
+ batch_update_records(model, :source_partition_id, from: 101, to: 100)
+ end
+
+ def down
+ # no-op
+ end
+
+ private
+
+ def batch_update_records(model, column, from:, to:, **updates)
+ updates.reverse_merge!(column => to)
+
+ model
+ .where(model.arel_table[column].eq(from))
+ .each_batch(of: BATCH_SIZE) { |batch| update_records(batch, updates) }
+ end
+
+ def update_records(relation, updates)
+ relation.update_all(updates)
+ sleep 0.1
+ end
+end