debian-mirror-gitlab/lib/gitlab/database/postgres_index.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

59 lines
2 KiB
Ruby
Raw Normal View History

2021-01-03 14:25:43 +05:30
# frozen_string_literal: true
module Gitlab
module Database
2021-12-11 22:18:48 +05:30
class PostgresIndex < SharedModel
2021-02-22 17:27:13 +05:30
include Gitlab::Utils::StrongMemoize
2021-01-03 14:25:43 +05:30
self.table_name = 'postgres_indexes'
self.primary_key = 'identifier'
2021-09-30 23:02:18 +05:30
self.inheritance_column = :_type_disabled
2021-01-03 14:25:43 +05:30
2021-02-22 17:27:13 +05:30
has_one :bloat_estimate, class_name: 'Gitlab::Database::PostgresIndexBloatEstimate', foreign_key: :identifier
has_many :reindexing_actions, class_name: 'Gitlab::Database::Reindexing::ReindexAction', foreign_key: :index_identifier
2021-12-11 22:18:48 +05:30
has_many :queued_reindexing_actions, class_name: 'Gitlab::Database::Reindexing::QueuedAction', foreign_key: :index_identifier
2021-02-22 17:27:13 +05:30
2021-01-03 14:25:43 +05:30
scope :by_identifier, ->(identifier) do
raise ArgumentError, "Index name is not fully qualified with a schema: #{identifier}" unless identifier =~ /^\w+\.\w+$/
find(identifier)
end
2021-09-30 23:02:18 +05:30
# Indexes with reindexing support
2021-10-27 15:23:28 +05:30
scope :reindexing_support, -> do
where(partitioned: false, exclusion: false, expression: false, type: Gitlab::Database::Reindexing::SUPPORTED_TYPES)
.not_match("#{Gitlab::Database::Reindexing::ReindexConcurrently::TEMPORARY_INDEX_PATTERN}$")
end
scope :reindexing_leftovers, -> { match("#{Gitlab::Database::Reindexing::ReindexConcurrently::TEMPORARY_INDEX_PATTERN}$") }
2021-01-03 14:25:43 +05:30
2021-09-30 23:02:18 +05:30
scope :not_match, ->(regex) { where("name !~ ?", regex) }
scope :match, ->(regex) { where("name ~* ?", regex) }
2021-02-22 17:27:13 +05:30
scope :not_recently_reindexed, -> do
recent_actions = Reindexing::ReindexAction.recent.where('index_identifier = identifier')
where('NOT EXISTS (?)', recent_actions)
2021-01-03 14:25:43 +05:30
end
2021-09-30 23:02:18 +05:30
def reset
reload # rubocop:disable Cop/ActiveRecordAssociationReload
clear_memoization(:bloat_size)
end
2021-02-22 17:27:13 +05:30
def bloat_size
strong_memoize(:bloat_size) { bloat_estimate&.bloat_size || 0 }
end
2021-01-03 14:25:43 +05:30
2021-09-30 23:02:18 +05:30
def relative_bloat_level
bloat_size / ondisk_size_bytes.to_f
end
2021-01-03 14:25:43 +05:30
def to_s
name
end
end
end
end