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

populate_topics_non_private_projects_count.rb « background_migration « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1f2b55004e4503346264fee4b082b03ceb8ce8a3 (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 BackgroundMigration
    # The class to populates the non private projects counter of topics
    class PopulateTopicsNonPrivateProjectsCount
      SUB_BATCH_SIZE = 100

      # Temporary AR model for topics
      class Topic < ActiveRecord::Base
        include EachBatch

        self.table_name = 'topics'
      end

      def perform(start_id, stop_id)
        Topic.where(id: start_id..stop_id).each_batch(of: SUB_BATCH_SIZE) do |batch|
          ApplicationRecord.connection.execute(<<~SQL)
            WITH batched_relation AS #{Gitlab::Database::AsWithMaterialized.materialized_if_supported} (#{batch.select(:id).limit(SUB_BATCH_SIZE).to_sql})
            UPDATE topics
            SET non_private_projects_count = (
              SELECT COUNT(*) 
              FROM project_topics 
              INNER JOIN projects 
              ON project_topics.project_id = projects.id 
              WHERE project_topics.topic_id = batched_relation.id 
              AND projects.visibility_level > 0
            )
            FROM batched_relation
            WHERE topics.id = batched_relation.id
          SQL
        end
      end
    end
  end
end