debian-mirror-gitlab/app/workers/issue_placement_worker.rb

64 lines
2 KiB
Ruby
Raw Normal View History

2020-11-24 15:15:51 +05:30
# frozen_string_literal: true
class IssuePlacementWorker
include ApplicationWorker
2021-06-08 01:23:25 +05:30
sidekiq_options retry: 3
2020-11-24 15:15:51 +05:30
idempotent!
2021-06-08 01:23:25 +05:30
deduplicate :until_executed, including_scheduled: true
2020-11-24 15:15:51 +05:30
feature_category :issue_tracking
urgency :high
worker_resource_boundary :cpu
weight 2
# Move at most the most recent 100 issues
QUERY_LIMIT = 100
# rubocop: disable CodeReuse/ActiveRecord
def perform(issue_id, project_id = nil)
issue = find_issue(issue_id, project_id)
return unless issue
2021-06-08 01:23:25 +05:30
# Temporary disable moving null elements because of performance problems
# For more information check https://gitlab.com/gitlab-com/gl-infra/production/-/issues/4321
return if issue.blocked_for_repositioning?
2020-11-24 15:15:51 +05:30
# Move the oldest 100 unpositioned items to the end.
# This is to deal with out-of-order execution of the worker,
# while preserving creation order.
to_place = Issue
.relative_positioning_query_base(issue)
.where(relative_position: nil)
.order({ created_at: :asc }, { id: :asc })
.limit(QUERY_LIMIT + 1)
.to_a
leftover = to_place.pop if to_place.count > QUERY_LIMIT
Issue.move_nulls_to_end(to_place)
2021-06-08 01:23:25 +05:30
Issues::BaseService.new(project: nil).rebalance_if_needed(to_place.max_by(&:relative_position))
2020-11-24 15:15:51 +05:30
IssuePlacementWorker.perform_async(nil, leftover.project_id) if leftover.present?
rescue RelativePositioning::NoSpaceLeft => e
Gitlab::ErrorTracking.log_exception(e, issue_id: issue_id, project_id: project_id)
2021-09-04 01:27:46 +05:30
IssueRebalancingWorker.perform_async(nil, *root_namespace_id_to_rebalance(issue, project_id))
2020-11-24 15:15:51 +05:30
end
def find_issue(issue_id, project_id)
2021-01-03 14:25:43 +05:30
return Issue.id_in(issue_id).take if issue_id
2020-11-24 15:15:51 +05:30
2021-01-03 14:25:43 +05:30
project = Project.id_in(project_id).take
2020-11-24 15:15:51 +05:30
return unless project
2021-01-03 14:25:43 +05:30
project.issues.take
2020-11-24 15:15:51 +05:30
end
2021-01-03 14:25:43 +05:30
# rubocop: enable CodeReuse/ActiveRecord
2021-09-04 01:27:46 +05:30
private
def root_namespace_id_to_rebalance(issue, project_id)
project_id = project_id.presence || issue.project_id
Project.find(project_id)&.self_or_root_group_ids
end
2020-11-24 15:15:51 +05:30
end