2020-09-25 11:09:36 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Gitlab
|
|
|
|
module Database
|
2021-10-28 17:10:02 -04:00
|
|
|
class PostgresIndex < SharedModel
|
2020-12-10 07:09:43 -05:00
|
|
|
include Gitlab::Utils::StrongMemoize
|
|
|
|
|
2020-09-25 11:09:36 -04:00
|
|
|
self.table_name = 'postgres_indexes'
|
|
|
|
self.primary_key = 'identifier'
|
2021-07-08 14:09:32 -04:00
|
|
|
self.inheritance_column = :_type_disabled
|
2020-09-25 11:09:36 -04:00
|
|
|
|
2020-12-10 07:09:43 -05:00
|
|
|
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-11-03 11:13:48 -04:00
|
|
|
has_many :queued_reindexing_actions, class_name: 'Gitlab::Database::Reindexing::QueuedAction', foreign_key: :index_identifier
|
2020-12-10 07:09:43 -05:00
|
|
|
|
2020-09-25 11:09:36 -04:00
|
|
|
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-07-19 08:10:08 -04:00
|
|
|
# Indexes with reindexing support
|
2021-07-21 11:08:52 -04:00
|
|
|
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}$") }
|
2020-09-25 11:09:36 -04:00
|
|
|
|
2021-07-19 08:10:08 -04:00
|
|
|
scope :not_match, ->(regex) { where("name !~ ?", regex) }
|
2020-12-10 07:09:43 -05:00
|
|
|
|
2021-07-19 08:10:08 -04:00
|
|
|
scope :match, ->(regex) { where("name ~* ?", regex) }
|
2021-07-06 14:08:17 -04:00
|
|
|
|
2020-12-10 07:09:43 -05:00
|
|
|
scope :not_recently_reindexed, -> do
|
|
|
|
recent_actions = Reindexing::ReindexAction.recent.where('index_identifier = identifier')
|
|
|
|
|
|
|
|
where('NOT EXISTS (?)', recent_actions)
|
2020-09-25 11:09:36 -04:00
|
|
|
end
|
|
|
|
|
2021-07-13 11:08:38 -04:00
|
|
|
def reset
|
|
|
|
reload # rubocop:disable Cop/ActiveRecordAssociationReload
|
|
|
|
clear_memoization(:bloat_size)
|
|
|
|
end
|
2021-07-06 14:08:17 -04:00
|
|
|
|
2020-12-10 07:09:43 -05:00
|
|
|
def bloat_size
|
|
|
|
strong_memoize(:bloat_size) { bloat_estimate&.bloat_size || 0 }
|
|
|
|
end
|
2020-10-01 14:10:20 -04:00
|
|
|
|
2021-07-08 14:09:32 -04:00
|
|
|
def relative_bloat_level
|
|
|
|
bloat_size / ondisk_size_bytes.to_f
|
|
|
|
end
|
|
|
|
|
2020-09-25 11:09:36 -04:00
|
|
|
def to_s
|
|
|
|
name
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|