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

multi_database_partition_manager.rb « partitioning « database « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5a93e3fb1fb8867231ce7e0eb7be2efb76f6afd8 (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
# frozen_string_literal: true

module Gitlab
  module Database
    module Partitioning
      class MultiDatabasePartitionManager
        def initialize(models)
          @models = models
        end

        def sync_partitions
          Gitlab::AppLogger.info(message: "Syncing dynamic postgres partitions")

          models.each do |model|
            Gitlab::Database::SharedModel.using_connection(model.connection) do
              Gitlab::AppLogger.debug(message: "Switched database connection",
                                      connection_name: connection_name,
                                      table_name: model.table_name)

              PartitionManager.new(model).sync_partitions
            end
          end

          Gitlab::AppLogger.info(message: "Finished sync of dynamic postgres partitions")
        end

        private

        attr_reader :models

        def connection_name
          Gitlab::Database::SharedModel.connection.pool.db_config.name
        end
      end
    end
  end
end