2019-10-30 08:06:34 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-01-15 22:08:47 -05:00
|
|
|
def log_pool_size(db, previous_pool_size, current_pool_size)
|
|
|
|
log_message = ["#{db} connection pool size: #{current_pool_size}"]
|
|
|
|
|
|
|
|
if previous_pool_size && current_pool_size > previous_pool_size
|
|
|
|
log_message << "(increased from #{previous_pool_size} to match thread count)"
|
|
|
|
end
|
|
|
|
|
|
|
|
Gitlab::AppLogger.debug(log_message.join(' '))
|
|
|
|
end
|
|
|
|
|
2020-01-30 01:08:49 -05:00
|
|
|
Gitlab.ee do
|
|
|
|
# We need to initialize the Geo database before
|
|
|
|
# setting the Geo DB connection pool size.
|
|
|
|
if File.exist?(Rails.root.join('config/database_geo.yml'))
|
|
|
|
Rails.application.configure do
|
|
|
|
config.geo_database = config_for(:database_geo)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-08-18 08:11:19 -04:00
|
|
|
ActiveRecord::Base.establish_connection(Gitlab::Database.main.db_config_with_default_pool_size)
|
2020-07-22 17:09:50 -04:00
|
|
|
|
2020-07-29 23:09:32 -04:00
|
|
|
Gitlab.ee do
|
|
|
|
if Gitlab::Runtime.sidekiq? && Gitlab::Geo.geo_database_configured?
|
2021-07-29 11:09:48 -04:00
|
|
|
Rails.configuration.geo_database['pool'] = Gitlab::Database.main.default_pool_size
|
2020-07-29 23:09:32 -04:00
|
|
|
Geo::TrackingBase.establish_connection(Rails.configuration.geo_database)
|
2020-01-15 22:08:47 -05:00
|
|
|
end
|
2019-10-30 08:06:34 -04:00
|
|
|
end
|