201 lines
6.6 KiB
Ruby
201 lines
6.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
# An InternalId is a strictly monotone sequence of integers
|
|
# generated for a given scope and usage.
|
|
#
|
|
# The monotone sequence may be broken if an ID is explicitly provided
|
|
# to `.track_greatest_and_save!` or `#track_greatest`.
|
|
#
|
|
# For example, issues use their project to scope internal ids:
|
|
# In that sense, scope is "project" and usage is "issues".
|
|
# Generated internal ids for an issue are unique per project.
|
|
#
|
|
# See InternalId#usage enum for available usages.
|
|
#
|
|
# In order to leverage InternalId for other usages, the idea is to
|
|
# * Add `usage` value to enum
|
|
# * (Optionally) add columns to `internal_ids` if needed for scope.
|
|
class InternalId < ApplicationRecord
|
|
include Gitlab::Utils::StrongMemoize
|
|
|
|
belongs_to :project
|
|
belongs_to :namespace
|
|
|
|
enum usage: Enums::InternalId.usage_resources
|
|
|
|
validates :usage, presence: true
|
|
|
|
# Increments #last_value and saves the record
|
|
#
|
|
# The operation locks the record and gathers a `ROW SHARE` lock (in PostgreSQL).
|
|
# As such, the increment is atomic and safe to be called concurrently.
|
|
def increment_and_save!
|
|
update_and_save { self.last_value = (last_value || 0) + 1 }
|
|
end
|
|
|
|
# Increments #last_value with new_value if it is greater than the current,
|
|
# and saves the record
|
|
#
|
|
# The operation locks the record and gathers a `ROW SHARE` lock (in PostgreSQL).
|
|
# As such, the increment is atomic and safe to be called concurrently.
|
|
def track_greatest_and_save!(new_value)
|
|
update_and_save { self.last_value = [last_value || 0, new_value].max }
|
|
end
|
|
|
|
private
|
|
|
|
def update_and_save(&block)
|
|
lock!
|
|
yield
|
|
update_and_save_counter.increment(usage: usage, changed: last_value_changed?)
|
|
save!
|
|
last_value
|
|
end
|
|
|
|
# Instrumentation to track for-update locks
|
|
def update_and_save_counter
|
|
strong_memoize(:update_and_save_counter) do
|
|
Gitlab::Metrics.counter(:gitlab_internal_id_for_update_lock, 'Number of ROW SHARE (FOR UPDATE) locks on individual records from internal_ids')
|
|
end
|
|
end
|
|
|
|
class << self
|
|
def track_greatest(subject, scope, usage, new_value, init)
|
|
InternalIdGenerator.new(subject, scope, usage, init)
|
|
.track_greatest(new_value)
|
|
end
|
|
|
|
def generate_next(subject, scope, usage, init)
|
|
InternalIdGenerator.new(subject, scope, usage, init)
|
|
.generate
|
|
end
|
|
|
|
def reset(subject, scope, usage, value)
|
|
InternalIdGenerator.new(subject, scope, usage)
|
|
.reset(value)
|
|
end
|
|
|
|
# Flushing records is generally safe in a sense that those
|
|
# records are going to be re-created when needed.
|
|
#
|
|
# A filter condition has to be provided to not accidentally flush
|
|
# records for all projects.
|
|
def flush_records!(filter)
|
|
raise ArgumentError, "filter cannot be empty" if filter.blank?
|
|
|
|
where(filter).delete_all
|
|
end
|
|
end
|
|
|
|
class InternalIdGenerator
|
|
# Generate next internal id for a given scope and usage.
|
|
#
|
|
# For currently supported usages, see #usage enum.
|
|
#
|
|
# The method implements a locking scheme that has the following properties:
|
|
# 1) Generated sequence of internal ids is unique per (scope and usage)
|
|
# 2) The method is thread-safe and may be used in concurrent threads/processes.
|
|
# 3) The generated sequence is gapless.
|
|
# 4) In the absence of a record in the internal_ids table, one will be created
|
|
# and last_value will be calculated on the fly.
|
|
#
|
|
# subject: The instance or class we're generating an internal id for.
|
|
# scope: Attributes that define the scope for id generation.
|
|
# Valid keys are `project/project_id` and `namespace/namespace_id`.
|
|
# usage: Symbol to define the usage of the internal id, see InternalId.usages
|
|
# init: Proc that accepts the subject and the scope and returns Integer|NilClass
|
|
attr_reader :subject, :scope, :scope_attrs, :usage, :init
|
|
|
|
def initialize(subject, scope, usage, init = nil)
|
|
@subject = subject
|
|
@scope = scope
|
|
@usage = usage
|
|
@init = init
|
|
|
|
raise ArgumentError, 'Scope is not well-defined, need at least one column for scope (given: 0)' if scope.empty?
|
|
|
|
unless InternalId.usages.has_key?(usage.to_s)
|
|
raise ArgumentError, "Usage '#{usage}' is unknown. Supported values are #{InternalId.usages.keys} from InternalId.usages"
|
|
end
|
|
end
|
|
|
|
# Generates next internal id and returns it
|
|
# init: Block that gets called to initialize InternalId record if not present
|
|
# Make sure to not throw exceptions in the absence of records (if this is expected).
|
|
def generate
|
|
subject.transaction do
|
|
# Create a record in internal_ids if one does not yet exist
|
|
# and increment its last value
|
|
#
|
|
# Note this will acquire a ROW SHARE lock on the InternalId record
|
|
record.increment_and_save!
|
|
end
|
|
end
|
|
|
|
# Reset tries to rewind to `value-1`. This will only succeed,
|
|
# if `value` stored in database is equal to `last_value`.
|
|
# value: The expected last_value to decrement
|
|
def reset(value)
|
|
return false unless value
|
|
|
|
updated =
|
|
InternalId
|
|
.where(**scope, usage: usage_value)
|
|
.where(last_value: value)
|
|
.update_all('last_value = last_value - 1')
|
|
|
|
updated > 0
|
|
end
|
|
|
|
# Create a record in internal_ids if one does not yet exist
|
|
# and set its new_value if it is higher than the current last_value
|
|
#
|
|
# Note this will acquire a ROW SHARE lock on the InternalId record
|
|
def track_greatest(new_value)
|
|
subject.transaction do
|
|
record.track_greatest_and_save!(new_value)
|
|
end
|
|
end
|
|
|
|
def record
|
|
@record ||= (lookup || create_record)
|
|
end
|
|
|
|
def with_lock(&block)
|
|
record.with_lock(&block)
|
|
end
|
|
|
|
private
|
|
|
|
# Retrieve InternalId record for (project, usage) combination, if it exists
|
|
def lookup
|
|
InternalId.find_by(**scope, usage: usage_value)
|
|
end
|
|
|
|
def usage_value
|
|
@usage_value ||= InternalId.usages[usage.to_s]
|
|
end
|
|
|
|
# Create InternalId record for (scope, usage) combination, if it doesn't exist
|
|
#
|
|
# We blindly insert without synchronization. If another process
|
|
# was faster in doing this, we'll realize once we hit the unique key constraint
|
|
# violation. We can safely roll-back the nested transaction and perform
|
|
# a lookup instead to retrieve the record.
|
|
def create_record
|
|
raise ArgumentError, 'Cannot initialize without init!' unless init
|
|
|
|
instance = subject.is_a?(::Class) ? nil : subject
|
|
|
|
subject.transaction(requires_new: true) do
|
|
InternalId.create!(
|
|
**scope,
|
|
usage: usage_value,
|
|
last_value: init.call(instance, scope) || 0
|
|
)
|
|
end
|
|
rescue ActiveRecord::RecordNotUnique
|
|
lookup
|
|
end
|
|
end
|
|
end
|