Cleanup "use_lock_for_update_repository_storage" feature flag
Contributes to https://gitlab.com/gitlab-org/gitlab/-/issues/431198 **Problem** It's possible to run multiple migration workers for the same project/snippet/group simultaneously The worker can be killed and rescheduled by Sidekiq interrupt signal. It will leave the migration in an inconsistent state. **Solution** Use an exclusive lock in storage migration workers. The exclusive lease key includes a project/snippet/group id to prevent simultaneous updates. The key value is a Sidekiq worker jid to track the owner of the update. This setup should handle following situations: Worker tries to migrate a repository under existing migration (result: job is marked as failed) Worker started a migration but was interrupted and rescheduled. (result: job is marked as failed, lock is released) Changelog: changed
显示
- app/workers/concerns/update_repository_storage_worker.rb 23 个添加, 27 个删除app/workers/concerns/update_repository_storage_worker.rb
- config/feature_flags/development/use_lock_for_update_repository_storage.yml 0 个添加, 8 个删除...gs/development/use_lock_for_update_repository_storage.yml
- spec/support/shared_examples/workers/update_repository_move_shared_examples.rb 0 个添加, 24 个删除...xamples/workers/update_repository_move_shared_examples.rb
想要评论请 注册 或 登录