Commit d1b11f67 authored by Tiger Watson's avatar Tiger Watson

Merge branch...

Merge branch '293972-geo-framework-persistent-failures-block-slow-down-retries-of-transient-failures' into 'master'

Geo Framework: Persistent failures block

See merge request gitlab-org/gitlab!54585
parents abb7fc8f 1a1da691
......@@ -36,7 +36,7 @@ module Geo::ReplicableRegistry
include ::Delay
scope :failed, -> { with_state(:failed) }
scope :needs_sync_again, -> { failed.retry_due }
scope :needs_sync_again, -> { failed.retry_due.order(Gitlab::Database.nulls_first_order(:retry_at)) }
scope :never_attempted_sync, -> { pending.where(last_synced_at: nil) }
scope :ordered, -> { order(:id) }
scope :pending, -> { with_state(:pending) }
......
---
title: 'Geo: Prioritize resyncing new failures over persistent failures'
merge_request: 54585
author:
type: fixed
......@@ -41,6 +41,15 @@ RSpec.shared_examples 'a Geo framework registry' do
expect(result).to include(failed_item2)
expect(result).not_to include(failed_item1)
end
it 'orders records according to retry_at' do
failed_item1.update!(retry_at: 2.days.ago)
failed_item2.update!(retry_at: 4.days.ago)
result = described_class.find_registries_needs_sync_again(batch_size: 10)
expect(result.first).to eq failed_item2
end
end
end
end
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