Welcome to mirror list, hosted at ThFree Co, Russian Federation.

batch_status_cleaner_service.rb « users « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ea6142f13cc653c7f6186acd9cf21ffe3e24e6a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

module Users
  class BatchStatusCleanerService
    BATCH_SIZE = 100.freeze

    # Cleanup BATCH_SIZE user_statuses records
    # rubocop: disable CodeReuse/ActiveRecord
    def self.execute(batch_size: BATCH_SIZE)
      scope = UserStatus
        .select(:user_id)
        .scheduled_for_cleanup
        .lock('FOR UPDATE SKIP LOCKED')
        .limit(batch_size)

      deleted_rows = UserStatus.where(user_id: scope).delete_all

      { deleted_rows: deleted_rows }
    end
    # rubocop: enable CodeReuse/ActiveRecord
  end
end