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

threaded_connection_pool.rb « database « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1316b005741a9cdde6ccaee2f366840ead4b67a7 (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
module Gitlab
  module Database
    class ThreadedConnectionPool
      def self.with_pool(pool_size)
        pool = new(pool_size)

        yield(pool)

      ensure
        pool.join
        pool.close
      end

      def initialize(pool_size)
        config = ActiveRecord::Base.configurations[Rails.env]
        @ar_pool = ActiveRecord::Base.establish_connection(
          config.merge(pool: pool_size))
        @workers = []
        @mutex = Mutex.new
      end

      def execute_async(sql)
        @mutex.synchronize do
          @workers << Thread.new do
            @ar_pool.with_connection do |connection|
              connection.execute(sql)
            end
          end
        end
      end

      def join
        threads = nil

        @mutex.synchronize do
          threads = @workers.dup
          @workers.clear
        end

        threads.each(&:join)
      end

      def close
        @ar_pool.disconnect!
      end
    end
  end
end