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-06-20 13:43:29 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-06-20 13:43:29 +0300
commit3b1af5cc7ed2666ff18b718ce5d30fa5a2756674 (patch)
tree3bc4a40e0ee51ec27eabf917c537033c0c5b14d4 /db/post_migrate/20230516123202_create_routing_table_for_ci_builds.rb
parent9bba14be3f2c211bf79e15769cd9b77bc73a13bc (diff)
Add latest changes from gitlab-org/gitlab@16-1-stable-eev16.1.0-rc42
Diffstat (limited to 'db/post_migrate/20230516123202_create_routing_table_for_ci_builds.rb')
-rw-r--r--db/post_migrate/20230516123202_create_routing_table_for_ci_builds.rb93
1 files changed, 93 insertions, 0 deletions
diff --git a/db/post_migrate/20230516123202_create_routing_table_for_ci_builds.rb b/db/post_migrate/20230516123202_create_routing_table_for_ci_builds.rb
new file mode 100644
index 00000000000..b95c1307b1b
--- /dev/null
+++ b/db/post_migrate/20230516123202_create_routing_table_for_ci_builds.rb
@@ -0,0 +1,93 @@
+# frozen_string_literal: true
+
+class CreateRoutingTableForCiBuilds < Gitlab::Database::Migration[2.1]
+ include Gitlab::Database::PartitioningMigrationHelpers
+
+ disable_ddl_transaction!
+
+ TABLE_NAME = :ci_builds
+ PARENT_TABLE_NAME = :p_ci_builds
+ FIRST_PARTITION = 100
+ PARTITION_COLUMN = :partition_id
+ FOREIGN_KEYS = {
+ p_ci_builds_metadata: :fk_e20479742e_p,
+ p_ci_runner_machine_builds: :fk_bb490f12fe_p
+ }
+
+ def up
+ return if connection.table_exists?(PARENT_TABLE_NAME) && partition_attached?
+
+ convert_table_to_first_list_partition(
+ table_name: TABLE_NAME,
+ partitioning_column: PARTITION_COLUMN,
+ parent_table_name: PARENT_TABLE_NAME,
+ initial_partitioning_value: FIRST_PARTITION,
+ lock_tables: %w[ci_pipelines ci_stages ci_builds ci_resource_groups]
+ )
+ end
+
+ def down
+ # rubocop:disable Migration/WithLockRetriesDisallowedMethod
+ with_lock_retries(raise_on_exhaustion: true) do
+ drop_foreign_keys
+
+ execute(<<~SQL)
+ ALTER TABLE #{PARENT_TABLE_NAME} DETACH PARTITION #{TABLE_NAME};
+ ALTER SEQUENCE ci_builds_id_seq OWNED BY #{TABLE_NAME}.id;
+ SQL
+
+ drop_table PARENT_TABLE_NAME
+ recreate_partition_foreign_keys
+ end
+ # rubocop:enable Migration/WithLockRetriesDisallowedMethod
+
+ finalize_foreign_keys_creation
+
+ prepare_constraint_for_list_partitioning(
+ table_name: TABLE_NAME,
+ partitioning_column: PARTITION_COLUMN,
+ parent_table_name: PARENT_TABLE_NAME,
+ initial_partitioning_value: FIRST_PARTITION
+ )
+ end
+
+ private
+
+ def partition_attached?
+ connection.select_value(<<~SQL)
+ SELECT true FROM postgres_partitions WHERE name = '#{TABLE_NAME}';
+ SQL
+ end
+
+ def drop_foreign_keys
+ FOREIGN_KEYS.each do |source, name|
+ remove_foreign_key_if_exists source, name: name
+ end
+ end
+
+ def recreate_partition_foreign_keys
+ FOREIGN_KEYS.each do |source, name|
+ Gitlab::Database::PostgresPartitionedTable.each_partition(source) do |partition|
+ execute(<<~SQL)
+ ALTER TABLE #{partition.identifier}
+ ADD CONSTRAINT #{name} FOREIGN KEY (partition_id, build_id)
+ REFERENCES #{TABLE_NAME}(partition_id, id)
+ ON UPDATE CASCADE ON DELETE CASCADE NOT VALID;
+ SQL
+ end
+ end
+ end
+
+ def finalize_foreign_keys_creation
+ FOREIGN_KEYS.each do |source, name|
+ add_concurrent_partitioned_foreign_key(source, TABLE_NAME,
+ column: [:partition_id, :build_id],
+ target_column: [:partition_id, :id],
+ reverse_lock_order: true,
+ on_update: :cascade,
+ on_delete: :cascade,
+ name: name
+ )
+ end
+ end
+end