gitlab-org--gitlab-foss/app/mailers/emails
Bob Van Landuyt 452bc36d60 Rework retry strategy for remote mirrors
**Prevention of running 2 simultaneous updates**

Instead of using `RemoteMirror#update_status` and raise an error if
it's already running to prevent the same mirror being updated at the
same time we now use `Gitlab::ExclusiveLease` for that.

When we fail to obtain a lease in 3 tries, 30 seconds apart, we bail
and reschedule. We'll reschedule faster for the protected branches.

If the mirror already ran since it was scheduled, the job will be
skipped.

**Error handling: Remote side**

When an update fails because of a `Gitlab::Git::CommandError`, we
won't track this error in sentry, this could be on the remote side:
for example when branches have diverged.

In this case, we'll try 3 times scheduled 1 or 5 minutes apart.

In between, the mirror is marked as "to_retry", the error would be
visible to the user when they visit the settings page.

After 3 tries we'll mark the mirror as failed and notify the user.

We won't track this error in sentry, as it's not likely we can help
it.

The next event that would trigger a new refresh.

**Error handling: our side**

If an unexpected error occurs, we mark the mirror as failed, but we'd
still retry the job based on the regular sidekiq retries with
backoff. Same as we used to

The error would be reported in sentry, since its likely we need to do
something about it.
2019-08-13 20:52:01 +00:00
..
auto_devops.rb Automatically disable Auto DevOps for project upon first pipeline failure 2018-09-06 19:20:42 +00:00
issues.rb Send notifications to group-specific email address 2019-05-31 20:49:27 +08:00
members.rb Respect alt email when sending group access notifications 2019-07-25 21:09:25 -06:00
merge_requests.rb Send notifications to group-specific email address 2019-05-31 20:49:27 +08:00
notes.rb Remove group in notification email subject 2019-07-01 16:23:11 +08:00
pages_domains.rb Send notifications to group-specific email address 2019-05-31 20:49:27 +08:00
pipelines.rb Rename ambiguous association names in Ci::Pipeline 2019-03-05 11:36:26 +07:00
profile.rb Disable existing offenses for the CodeReuse cops 2018-09-11 17:32:00 +02:00
projects.rb Send notifications to group-specific email address 2019-05-31 20:49:27 +08:00
remote_mirrors.rb Rework retry strategy for remote mirrors 2019-08-13 20:52:01 +00:00