summaryrefslogtreecommitdiff
path: root/lib/gitlab/database/postgres_index_bloat_estimate.rb
blob: 379227bf87c15e4b87b32609057a8b10eeaf9c67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

module Gitlab
  module Database
    # Use this model with care: Retrieving bloat statistics
    # for all indexes can be expensive in a large database.
    #
    # Best used on a per-index basis.
    class PostgresIndexBloatEstimate < ActiveRecord::Base
      self.table_name = 'postgres_index_bloat_estimates'
      self.primary_key = 'identifier'

      belongs_to :index, foreign_key: :identifier, class_name: 'Gitlab::Database::PostgresIndex'

      alias_attribute :bloat_size, :bloat_size_bytes
    end
  end
end