Files
gitlab-foss/lib/gitlab/database.rb
2025-06-18 18:11:47 +00:00

443 lines
15 KiB
Ruby

# frozen_string_literal: true
module Gitlab
module Database
MAIN_DATABASE_NAME = 'main'
CI_DATABASE_NAME = 'ci'
SEC_DATABASE_NAME = 'sec'
DEFAULT_POOL_HEADROOM = 10
# This constant is used when renaming tables concurrently.
# If you plan to rename a table using the `rename_table_safely` method, add your table here one milestone before the rename.
# Example:
# TABLES_TO_BE_RENAMED = {
# 'old_name' => 'new_name'
# }.freeze
TABLES_TO_BE_RENAMED = {}.freeze
# Minimum PostgreSQL version requirement per documentation:
# https://docs.gitlab.com/ee/install/requirements.html#postgresql-requirements
MINIMUM_POSTGRES_VERSION = 16
# https://www.postgresql.org/docs/9.2/static/datatype-numeric.html
MAX_INT_VALUE = 2147483647
MIN_INT_VALUE = -2147483648
MAX_SMALLINT_VALUE = 32767
# The max value between MySQL's TIMESTAMP and PostgreSQL's timestampz:
# https://www.postgresql.org/docs/9.1/static/datatype-datetime.html
# https://dev.mysql.com/doc/refman/5.7/en/datetime.html
# FIXME: this should just be the max value of timestampz
MAX_TIMESTAMP_VALUE = Time.at((1 << 31) - 1).freeze
# The maximum number of characters for text fields, to avoid DoS attacks via parsing huge text fields
# https://gitlab.com/gitlab-org/gitlab-foss/issues/61974
MAX_TEXT_SIZE_LIMIT = 1_000_000
# Schema we store dynamically managed partitions in (e.g. for time partitioning)
DYNAMIC_PARTITIONS_SCHEMA = :gitlab_partitions_dynamic
# Schema we store static partitions in (e.g. for hash partitioning)
STATIC_PARTITIONS_SCHEMA = :gitlab_partitions_static
# This is an extensive list of postgres schemas owned by GitLab
# It does not include the default public schema
EXTRA_SCHEMAS = [DYNAMIC_PARTITIONS_SCHEMA, STATIC_PARTITIONS_SCHEMA].freeze
PRIMARY_DATABASE_NAME = ActiveRecord::Base.connection_db_config.name.to_sym # rubocop:disable Database/MultipleDatabases
FULLY_QUALIFIED_IDENTIFIER = /^\w+\.\w+$/
## Database Modes
MODE_SINGLE_DATABASE = "single-database"
MODE_SINGLE_DATABASE_CI_CONNECTION = "single-database-ci-connection"
MODE_MULTIPLE_DATABASES = "multiple-databases"
MAX_INDEXES_ALLOWED_PER_TABLE = 15
def self.all_database_connection_files
Dir.glob(Rails.root.join("db/database_connections/*.yaml"))
end
def self.all_gitlab_schema_files
Dir.glob(Rails.root.join("db/gitlab_schemas/*.yaml"))
end
def self.all_database_connections
@all_database_connections ||=
all_database_connection_files
.map { |file| DatabaseConnectionInfo.load_file(file) }
.sort_by(&:order)
.index_by(&:name)
.with_indifferent_access.freeze
end
def self.all_database_names
all_database_connections.keys.map(&:to_s)
end
def self.all_gitlab_schemas
@all_gitlab_schemas ||=
all_gitlab_schema_files
.map { |file| GitlabSchemaInfo.load_file(file) }
.index_by(&:name)
.with_indifferent_access.freeze
end
def self.database_base_models
# Note that we use ActiveRecord::Base here and not ApplicationRecord.
# This is deliberate, as we also use these classes to apply load
# balancing to, and the load balancer must be enabled for _all_ models
# that inherit from ActiveRecord::Base; not just our own models that
# inherit from ApplicationRecord.
@database_base_models ||=
all_database_connections
.transform_values(&:connection_class)
.compact.with_indifferent_access.freeze
end
# This returns a list of databases that contains all the gitlab_shared schema
# tables.
def self.database_base_models_with_gitlab_shared
@database_base_models_with_gitlab_shared ||=
all_database_connections
.select { |_, db| db.has_gitlab_shared? }
.transform_values(&:connection_class)
.compact.with_indifferent_access.freeze
end
# This returns a list of databases whose connection supports database load
# balancing. We can't reuse the database_base_models since not all connections
# do support load balancing.
def self.database_base_models_using_load_balancing
@database_base_models_using_load_balancing ||=
all_database_connections
.select { |_, db| db.uses_load_balancing? }
.transform_values(&:connection_class)
.compact.with_indifferent_access.freeze
end
# Returns the application record that created the given connection.
# In single database mode, this always returns ApplicationRecord.
def self.application_record_for_connection(connection)
@gitlab_base_models ||=
database_base_models
.transform_values { |v| v == ActiveRecord::Base ? ApplicationRecord : v }
@gitlab_base_models[db_config_name(connection)]
end
# This returns a list of base models with connection associated for a given gitlab_schema
def self.schemas_to_base_models
@schemas_to_base_models ||=
all_gitlab_schemas.transform_values do |schema|
all_database_connections
.values
.select { |db| db.gitlab_schemas.include?(schema.name) }
.filter_map { |db| db.connection_class_or_fallback(all_database_connections) }
.uniq
end.compact.with_indifferent_access.freeze
end
# We configure the database connection pool size automatically based on the
# configured concurrency. We also add some headroom, to make sure we don't
# run out of connections when more threads besides the 'user-facing' ones
# are running.
#
# Read more about this in
# doc/development/database/client_side_connection_pool.md
def self.default_pool_size
headroom =
(ENV["DB_POOL_HEADROOM"].presence || DEFAULT_POOL_HEADROOM).to_i
Gitlab::Runtime.max_threads + headroom
end
# Expose path information so that we can use it to make sure migrations are
# healthy
def self.upgrade_path
path_data = YAML.safe_load_file(Rails.root.join('config/upgrade_path.yml'))
Gitlab::Utils::UpgradePath.new(path_data, Gitlab.version_info)
end
# Migrations before this version may have been removed.
def self.min_schema_gitlab_version
upgrade_path.last_required_stop
end
# Database configured. Returns true even if the database is shared
def self.has_config?(database_name)
ActiveRecord::Base.configurations
.configs_for(env_name: Rails.env, name: database_name.to_s, include_hidden: true)
.present?
end
# Database configured. Returns false if the database is shared
def self.has_database?(database_name)
db_config = ::Gitlab::Database.database_base_models[database_name]&.connection_db_config
db_config.present? && db_config_share_with(db_config).nil?
end
def self.database_mode
secondary_databases = Gitlab::Database.all_database_connections.select { |_, db| db.has_gitlab_shared? }.keys
secondary_databases -= [MAIN_DATABASE_NAME]
if secondary_databases.none? { |db| has_config?(db) }
MODE_SINGLE_DATABASE
elsif secondary_databases.any? { |db| has_database?(db) }
MODE_MULTIPLE_DATABASES
else
MODE_SINGLE_DATABASE_CI_CONNECTION
end
end
class PgUser < ApplicationRecord
self.table_name = 'pg_user'
self.primary_key = :usename
end
# rubocop: disable CodeReuse/ActiveRecord
def self.check_for_non_superuser
user = PgUser.find_by('usename = CURRENT_USER')
am_i_superuser = user.usesuper
Gitlab::AppLogger.info(
"Account details: User: \"#{user.usename}\", UseSuper: (#{am_i_superuser})"
)
raise 'Error: detected superuser' if am_i_superuser
rescue ActiveRecord::StatementInvalid
raise 'User CURRENT_USER not found'
end
# rubocop: enable CodeReuse/ActiveRecord
def self.random
"RANDOM()"
end
def self.true_value
"'t'"
end
def self.false_value
"'f'"
end
def self.sanitize_timestamp(timestamp)
MAX_TIMESTAMP_VALUE > timestamp ? timestamp : MAX_TIMESTAMP_VALUE.dup
end
def self.all_uncached(&block)
# Calls to #uncached only disable caching for the current connection. Since the load balancer
# can potentially upgrade from read to read-write mode (using a different connection), we specify
# up-front that we'll explicitly use the primary for the duration of the operation.
base_models = database_base_models_using_load_balancing.values
base_models.reduce(block) do |blk, model|
-> { Gitlab::Database::LoadBalancing::SessionMap.current(model.load_balancer).use_primary { model.uncached(&blk) } }
end.call
end
def self.allow_cross_joins_across_databases(url:)
# this method is implemented in:
# spec/support/database/prevent_cross_joins.rb
yield
end
def self.add_post_migrate_path_to_rails(force: false)
return if ENV['SKIP_POST_DEPLOYMENT_MIGRATIONS'] && !force
Rails.application.config.paths['db'].each do |db_path|
path = Rails.root.join(db_path, 'post_migrate').to_s
next if Rails.application.config.paths['db/migrate'].include? path
Rails.application.config.paths['db/migrate'] << path
# Rails memoizes migrations at certain points where it won't read the above
# path just yet. As such we must also update the following list of paths.
ActiveRecord::Migrator.migrations_paths << path
end
end
def self.db_config_names(with_schema:)
db_config_names = ::ActiveRecord::Base.configurations
.configs_for(env_name: Rails.env).map(&:name)
return db_config_names unless with_schema
schema_models = schemas_to_base_models.fetch(with_schema)
db_config_names.select do |db_config_name|
db_info = all_database_connections.fetch(db_config_name)
schema_models.include?(db_info.connection_class)
end
end
# This returns all matching schemas that a given connection can use
# Since the `ActiveRecord::Base` might change the connection (from main to ci)
# This does not look at literal connection names, but rather compares
# models that are holders for a given db_config_name
def self.gitlab_schemas_for_connection(connection)
db_config = self.db_config_for_connection(connection)
# connection might not be yet adopted (returning NullPool, and no connection_klass)
# in such cases it is fine to ignore such connections
return unless db_config
db_config_name = db_config.name.delete_suffix(LoadBalancing::LoadBalancer::REPLICA_SUFFIX)
primary_model = self.database_base_models[db_config_name.to_sym]
return unless primary_model
self.schemas_to_base_models.select do |_, child_models|
child_models.any? do |child_model|
child_model == primary_model || \
# The model might indicate a child connection, ensure that this is enclosed in a `db_config`
self.database_base_models[self.db_config_share_with(child_model.connection_db_config)] == primary_model
end
end.keys.map!(&:to_sym)
end
def self.db_config_for_connection(connection)
return unless connection
# For a ConnectionProxy we want to avoid ambiguous db_config as it may
# sometimes default to replica so we always return the primary config
# instead.
if connection.is_a?(::Gitlab::Database::LoadBalancing::ConnectionProxy)
return connection.load_balancer.configuration.db_config
end
# During application init we might receive `NullPool`
return unless connection.respond_to?(:pool) &&
connection.pool.respond_to?(:db_config)
db_config = connection.pool.db_config
db_config unless empty_config?(db_config)
end
def self.empty_config?(db_config)
return true unless db_config
db_config.is_a?(ActiveRecord::ConnectionAdapters::NullPool::NullConfig)
end
# At the moment, the connection can only be retrieved by
# Gitlab::Database::LoadBalancer#read or #read_write or from the
# ActiveRecord directly. Therefore, if the load balancer doesn't
# recognize the connection, this method returns the primary role
# directly. In future, we may need to check for other sources.
# Expected returned names:
# main, main_replica, ci, ci_replica, unknown
def self.db_config_name(connection)
db_config = db_config_for_connection(connection)
db_config&.name || 'unknown'
end
def self.db_config_database(connection)
db_config = db_config_for_connection(connection)
db_config&.database || 'unknown'
end
# If the `database_tasks: false` is being used,
# return the expected fallback database for this database configuration
def self.db_config_share_with(db_config)
# no sharing
return if db_config.database_tasks?
database_connection_info = all_database_connections[db_config.name]
if database_connection_info
database_connection_info.fallback_database&.to_s
else
# legacy behaviour
'main'
end
end
def self.read_only?
false
end
def self.read_write?
!read_only?
end
# Determines minimum viable migration version, determined by the timestamp
# of the earliest migration file.
def self.read_minimum_migration_version
Dir.open(
Rails.root.join('db/migrate')
).filter_map { |f| /\A\d{14}/.match(f)&.to_s }.map(&:to_i).min
end
# Monkeypatch rails with upgraded database observability
def self.install_transaction_metrics_patches!
ActiveRecord::Base.prepend(ActiveRecordBaseTransactionMetrics)
end
def self.install_transaction_context_patches!
ActiveRecord::ConnectionAdapters::TransactionManager
.prepend(TransactionManagerContext)
ActiveRecord::ConnectionAdapters::RealTransaction
.prepend(RealTransactionContext)
end
# MonkeyPatch for ActiveRecord::Base for adding observability
module ActiveRecordBaseTransactionMetrics
extend ActiveSupport::Concern
class_methods do
# A patch over ApplicationRecord.transaction that provides
# observability into transactional methods.
def transaction(**options, &block)
transaction_type = get_transaction_type(connection.transaction_open?, options[:requires_new])
::Gitlab::Database::Metrics.subtransactions_increment(self.name) if transaction_type == :sub_transaction
super(**options, &block)
end
private
def get_transaction_type(transaction_open, requires_new_flag)
if transaction_open
return :sub_transaction if requires_new_flag
return :fake_transaction
end
:real_transaction
end
end
end
# rubocop:disable Gitlab/ModuleWithInstanceVariables
module TransactionManagerContext
def transaction_context
@stack.first.try(:gitlab_transaction_context)
end
end
module RealTransactionContext
def gitlab_transaction_context
@gitlab_transaction_context ||= ::Gitlab::Database::Transaction::Context.new
end
def commit
gitlab_transaction_context.commit
super
end
def rollback
gitlab_transaction_context.rollback
super
end
end
# rubocop:enable Gitlab/ModuleWithInstanceVariables
end
end
Gitlab::Database.prepend_mod_with('Gitlab::Database')