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

20230124104310_prepare_web_hook_logs_id_created_at_async_index.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d22fda092d3719869f4ddc1690a3d37a7a54575b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# frozen_string_literal: true

class PrepareWebHookLogsIdCreatedAtAsyncIndex < Gitlab::Database::Migration[2.1]
  include Gitlab::Database::PartitioningMigrationHelpers

  disable_ddl_transaction!

  INDEX_NAME = 'index_web_hook_logs_on_web_hook_id_and_created_at'

  def up
    # Since web_hook_logs is a partitioned table, we need to prepare the index
    # for each partition individually. We can't use the `prepare_async_index`
    # method directly because it will try to prepare the index for the whole
    # table, which will fail.

    # In a future migration after this one, we will create the index on the
    # parent table itself.
    each_partition(:web_hook_logs) do |partition, partition_index_name|
      prepare_async_index(partition.identifier, [:web_hook_id, :created_at],
                          name: partition_index_name)
    end
  end

  def down
    each_partition(:web_hook_logs) do |partition, partition_index_name|
      unprepare_async_index_by_name(partition.identifier, partition_index_name)
    end
  end

  private

  def each_partition(table_name)
    partitioned_table = find_partitioned_table(table_name)
    partitioned_table.postgres_partitions.order(:name).each do |partition|
      partition_index_name = generated_index_name(partition.identifier, INDEX_NAME)

      yield partition, partition_index_name
    end
  end
end