summaryrefslogtreecommitdiff
path: root/lib/gitlab/database/reindexing/index_selection.rb
blob: 406e70791dfe2cb4a5bd2c2377f8ce5758c41235 (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
# frozen_string_literal: true

module Gitlab
  module Database
    module Reindexing
      class IndexSelection
        include Enumerable

        delegate :each, to: :indexes

        def initialize(candidates)
          @candidates = candidates
        end

        private

        attr_reader :candidates

        def indexes
          # This is an explicit N+1 query:
          # Bloat estimates are generally available through a view
          # for all indexes. However, estimating bloat for all
          # indexes at once is an expensive operation. Therefore,
          # we force a N+1 pattern here and estimate bloat on a per-index
          # basis.

          @indexes ||= filter_candidates.sort_by(&:bloat_size).reverse
        end

        def filter_candidates
          candidates.not_recently_reindexed
        end
      end
    end
  end
end