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

setup.rb « load_balancing « database « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3cce839a960f73fe874de8bed964d6850317329a (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# frozen_string_literal: true

module Gitlab
  module Database
    module LoadBalancing
      # Class for setting up load balancing of a specific model.
      class Setup
        attr_reader :configuration

        def initialize(model, start_service_discovery: false)
          @model = model
          @configuration = Configuration.for_model(model)
          @start_service_discovery = start_service_discovery
        end

        def setup
          disable_prepared_statements
          setup_load_balancer
          setup_service_discovery
        end

        def disable_prepared_statements
          db_config_object = @model.connection_db_config
          config =
            db_config_object.configuration_hash.merge(prepared_statements: false)

          hash_config = ActiveRecord::DatabaseConfigurations::HashConfig.new(
            db_config_object.env_name,
            db_config_object.name,
            config
          )

          @model.establish_connection(hash_config)
        end

        def setup_load_balancer
          lb = LoadBalancer.new(configuration)

          # We just use a simple `class_attribute` here so we don't need to
          # inject any modules and/or expose unnecessary methods.
          @model.class_attribute(:connection)
          @model.class_attribute(:sticking)

          @model.connection = ConnectionProxy.new(lb)
          @model.sticking = Sticking.new(lb)
        end

        def setup_service_discovery
          return unless configuration.service_discovery_enabled?

          lb = @model.connection.load_balancer
          sv = ServiceDiscovery.new(lb, **configuration.service_discovery)

          sv.perform_service_discovery

          sv.start if @start_service_discovery
        end
      end
    end
  end
end