Commit 2390284a authored by Stan Hu's avatar Stan Hu

Merge branch 'ab/iid-unnecessary-locks' into 'master'

Avoid unnecessary locks on internal_ids (remove feature flag)

Closes #30515

See merge request gitlab-org/gitlab!18328
parents cd151e26 98db5766
...@@ -57,8 +57,7 @@ module AtomicInternalId ...@@ -57,8 +57,7 @@ module AtomicInternalId
end end
define_method("track_#{scope}_#{column}!") do define_method("track_#{scope}_#{column}!") do
iid_always_track = Feature.enabled?(:iid_always_track, default_enabled: true) return unless @internal_id_needs_tracking
return unless @internal_id_needs_tracking || iid_always_track
scope_value = internal_id_read_scope(scope) scope_value = internal_id_read_scope(scope)
return unless scope_value return unless scope_value
......
...@@ -54,7 +54,7 @@ class InternalId < ApplicationRecord ...@@ -54,7 +54,7 @@ class InternalId < ApplicationRecord
last_value last_value
end end
# Temporary instrumentation to track for-update locks # Instrumentation to track for-update locks
def update_and_save_counter def update_and_save_counter
strong_memoize(:update_and_save_counter) do 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') Gitlab::Metrics.counter(:gitlab_internal_id_for_update_lock, 'Number of ROW SHARE (FOR UPDATE) locks on individual records from internal_ids')
......
---
title: Avoid unnecessary locks on internal_ids
merge_request: 18328
author:
type: performance
...@@ -22,11 +22,6 @@ describe AtomicInternalId do ...@@ -22,11 +22,6 @@ describe AtomicInternalId do
end end
context 'when value is set by ensure_project_iid!' do context 'when value is set by ensure_project_iid!' do
context 'with iid_always_track false' do
before do
stub_feature_flags(iid_always_track: false)
end
it 'does not track the value' do it 'does not track the value' do
expect(InternalId).not_to receive(:track_greatest) expect(InternalId).not_to receive(:track_greatest)
...@@ -45,20 +40,6 @@ describe AtomicInternalId do ...@@ -45,20 +40,6 @@ describe AtomicInternalId do
subject subject
end end
end end
context 'with iid_always_track enabled' do
before do
stub_feature_flags(iid_always_track: true)
end
it 'does not track the value' do
expect(InternalId).to receive(:track_greatest)
milestone.ensure_project_iid!
subject
end
end
end
end end
describe '#ensure_project_iid!' do describe '#ensure_project_iid!' do
......
...@@ -47,10 +47,6 @@ shared_examples_for 'AtomicInternalId' do |validate_presence: true| ...@@ -47,10 +47,6 @@ shared_examples_for 'AtomicInternalId' do |validate_presence: true|
end end
describe 'internal id generation' do describe 'internal id generation' do
before do
stub_feature_flags(iid_always_track: false)
end
subject { instance.save! } subject { instance.save! }
it 'calls InternalId.generate_next and sets internal id attribute' do it 'calls InternalId.generate_next and sets internal id attribute' do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment