2021-09-30 23:02:18 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Gitlab
|
|
|
|
module Database
|
|
|
|
class BatchCounter
|
|
|
|
FALLBACK = -1
|
|
|
|
MIN_REQUIRED_BATCH_SIZE = 1_250
|
|
|
|
DEFAULT_SUM_BATCH_SIZE = 1_000
|
|
|
|
MAX_ALLOWED_LOOPS = 10_000
|
|
|
|
SLEEP_TIME_IN_SECONDS = 0.01 # 10 msec sleep
|
|
|
|
ALLOWED_MODES = [:itself, :distinct].freeze
|
|
|
|
FALLBACK_FINISH = 0
|
|
|
|
OFFSET_BY_ONE = 1
|
|
|
|
|
|
|
|
# Each query should take < 500ms https://gitlab.com/gitlab-org/gitlab/-/merge_requests/22705
|
|
|
|
DEFAULT_DISTINCT_BATCH_SIZE = 10_000
|
|
|
|
DEFAULT_BATCH_SIZE = 100_000
|
|
|
|
|
|
|
|
def initialize(relation, column: nil, operation: :count, operation_args: nil)
|
|
|
|
@relation = relation
|
|
|
|
@column = column || relation.primary_key
|
|
|
|
@operation = operation
|
|
|
|
@operation_args = operation_args
|
|
|
|
end
|
|
|
|
|
|
|
|
def unwanted_configuration?(finish, batch_size, start)
|
|
|
|
(@operation == :count && batch_size <= MIN_REQUIRED_BATCH_SIZE) ||
|
|
|
|
(@operation == :sum && batch_size < DEFAULT_SUM_BATCH_SIZE) ||
|
|
|
|
(finish - start) / batch_size >= MAX_ALLOWED_LOOPS ||
|
|
|
|
start >= finish
|
|
|
|
end
|
|
|
|
|
|
|
|
def count(batch_size: nil, mode: :itself, start: nil, finish: nil)
|
2021-12-11 22:18:48 +05:30
|
|
|
raise 'BatchCount can not be run inside a transaction' if transaction_open?
|
2021-09-30 23:02:18 +05:30
|
|
|
|
|
|
|
check_mode!(mode)
|
|
|
|
|
|
|
|
# non-distinct have better performance
|
|
|
|
batch_size ||= batch_size_for_mode_and_operation(mode, @operation)
|
|
|
|
|
|
|
|
start = actual_start(start)
|
|
|
|
finish = actual_finish(finish)
|
|
|
|
|
|
|
|
raise "Batch counting expects positive values only for #{@column}" if start < 0 || finish < 0
|
|
|
|
return FALLBACK if unwanted_configuration?(finish, batch_size, start)
|
|
|
|
|
|
|
|
results = nil
|
|
|
|
batch_start = start
|
|
|
|
|
|
|
|
while batch_start < finish
|
|
|
|
begin
|
|
|
|
batch_end = [batch_start + batch_size, finish].min
|
|
|
|
batch_relation = build_relation_batch(batch_start, batch_end, mode)
|
|
|
|
|
2022-03-02 08:16:31 +05:30
|
|
|
results = merge_results(results, batch_relation.send(@operation, *@operation_args)) # rubocop:disable GitlabSecurity/PublicSend
|
2021-09-30 23:02:18 +05:30
|
|
|
batch_start = batch_end
|
|
|
|
rescue ActiveRecord::QueryCanceled => error
|
|
|
|
# retry with a safe batch size & warmer cache
|
|
|
|
if batch_size >= 2 * MIN_REQUIRED_BATCH_SIZE
|
|
|
|
batch_size /= 2
|
|
|
|
else
|
|
|
|
log_canceled_batch_fetch(batch_start, mode, batch_relation.to_sql, error)
|
|
|
|
return FALLBACK
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
sleep(SLEEP_TIME_IN_SECONDS)
|
|
|
|
end
|
|
|
|
|
|
|
|
results
|
|
|
|
end
|
|
|
|
|
2021-12-11 22:18:48 +05:30
|
|
|
def transaction_open?
|
|
|
|
@relation.connection.transaction_open?
|
|
|
|
end
|
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
def merge_results(results, object)
|
|
|
|
return object unless results
|
|
|
|
|
|
|
|
if object.is_a?(Hash)
|
|
|
|
results.merge!(object) { |_, a, b| a + b }
|
|
|
|
else
|
|
|
|
results + object
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def build_relation_batch(start, finish, mode)
|
2022-03-02 08:16:31 +05:30
|
|
|
@relation.select(@column).public_send(mode).where(between_condition(start, finish)) # rubocop:disable GitlabSecurity/PublicSend
|
2021-09-30 23:02:18 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def batch_size_for_mode_and_operation(mode, operation)
|
|
|
|
return DEFAULT_SUM_BATCH_SIZE if operation == :sum
|
|
|
|
|
|
|
|
mode == :distinct ? DEFAULT_DISTINCT_BATCH_SIZE : DEFAULT_BATCH_SIZE
|
|
|
|
end
|
|
|
|
|
|
|
|
def between_condition(start, finish)
|
|
|
|
return @column.between(start...finish) if @column.is_a?(Arel::Attributes::Attribute)
|
|
|
|
|
|
|
|
{ @column => start...finish }
|
|
|
|
end
|
|
|
|
|
|
|
|
def actual_start(start)
|
|
|
|
start || @relation.unscope(:group, :having).minimum(@column) || 0
|
|
|
|
end
|
|
|
|
|
|
|
|
def actual_finish(finish)
|
|
|
|
(finish || @relation.unscope(:group, :having).maximum(@column) || FALLBACK_FINISH) + OFFSET_BY_ONE
|
|
|
|
end
|
|
|
|
|
|
|
|
def check_mode!(mode)
|
|
|
|
raise "The mode #{mode.inspect} is not supported" unless ALLOWED_MODES.include?(mode)
|
|
|
|
raise 'Use distinct count for optimized distinct counting' if @relation.limit(1).distinct_value.present? && mode != :distinct
|
|
|
|
raise 'Use distinct count only with non id fields' if @column == :id && mode == :distinct
|
|
|
|
end
|
|
|
|
|
|
|
|
def log_canceled_batch_fetch(batch_start, mode, query, error)
|
|
|
|
Gitlab::AppJsonLogger
|
|
|
|
.error(
|
|
|
|
event: 'batch_count',
|
|
|
|
relation: @relation.table_name,
|
|
|
|
operation: @operation,
|
|
|
|
operation_args: @operation_args,
|
|
|
|
start: batch_start,
|
|
|
|
mode: mode,
|
|
|
|
query: query,
|
|
|
|
message: "Query has been canceled with message: #{error.message}"
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def not_group_by_query?
|
|
|
|
!@relation.is_a?(ActiveRecord::Relation) || @relation.group_values.blank?
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|