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

24 lines
672 B
Ruby
Raw Normal View History

2018-11-08 19:23:39 +05:30
# frozen_string_literal: true
2016-09-29 09:46:39 +05:30
class PruneOldEventsWorker
2018-03-17 18:26:18 +05:30
include ApplicationWorker
2016-11-03 12:29:30 +05:30
include CronjobQueue
2016-09-29 09:46:39 +05:30
2019-12-21 20:55:43 +05:30
feature_category_not_owned!
2018-12-05 23:21:45 +05:30
# rubocop: disable CodeReuse/ActiveRecord
2016-09-29 09:46:39 +05:30
def perform
2019-12-21 20:55:43 +05:30
# Contribution calendar shows maximum 12 months of events, we retain 3 years for data integrity.
2018-12-05 23:21:45 +05:30
# Double nested query is used because MySQL doesn't allow DELETE subqueries on the same table.
2016-09-29 09:46:39 +05:30
Event.unscoped.where(
'(id IN (SELECT id FROM (?) ids_to_remove))',
Event.unscoped.where(
'created_at < ?',
2019-12-21 20:55:43 +05:30
(3.years + 1.day).ago)
2017-09-10 17:25:29 +05:30
.select(:id)
.limit(10_000))
.delete_all
2016-09-29 09:46:39 +05:30
end
2018-12-05 23:21:45 +05:30
# rubocop: enable CodeReuse/ActiveRecord
2016-09-29 09:46:39 +05:30
end