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

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

module Gitlab
  module Database
    ##
    # This class is used to make it possible to ensure read consistency in
    # GitLab EE without the need of overriding a lot of methods / classes /
    # classs.
    #
    # This is a CE class that does nothing in CE, because database load
    # balancing is EE-only feature, but you can still use it in CE. It will
    # start ensuring read consistency once it is overridden in EE.
    #
    # Using this class in CE helps to avoid creeping discrepancy between CE /
    # EE only to force usage of the primary database in EE.
    #
    class Consistency
      ##
      # In CE there is no database load balancing, so all reads are expected to
      # be consistent by the ACID guarantees of a single PostgreSQL instance.
      #
      # This method is overridden in EE.
      #
      def self.with_read_consistency(&block)
        yield
      end
    end
  end
end

::Gitlab::Database::Consistency.singleton_class.prepend_if_ee('EE::Gitlab::Database::Consistency')