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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/users/batch_status_cleaner_service.rb')
-rw-r--r--app/services/users/batch_status_cleaner_service.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/app/services/users/batch_status_cleaner_service.rb b/app/services/users/batch_status_cleaner_service.rb
new file mode 100644
index 00000000000..ea6142f13cc
--- /dev/null
+++ b/app/services/users/batch_status_cleaner_service.rb
@@ -0,0 +1,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