Commit c645d40a authored by Shinya Maeda's avatar Shinya Maeda

Use find_in_batches for rake task

parent cd393187
......@@ -8,10 +8,18 @@ namespace :gitlab do
logger = Logger.new(STDOUT)
logger.info('Archiving legacy traces')
job_ids = Ci::Build.complete.without_trace_artifact.pluck(:id)
job_ids = job_ids.map { |build_id| [build_id] }
Ci::Build.joins('RIGHT JOIN ci_job_artifacts ON ci_job_artifacts.job_id = ci_builds.id')
.finished
.where('ci_job_artifacts.file_type <> 3')
.group('ci_builds.id')
.order(id: :asc)
.find_in_batches(batch_size: 1000) do |jobs|
job_ids = jobs.map { |job| [job.id] }
ArchiveLegacyTraceWorker.bulk_perform_async(job_ids)
ArchiveLegacyTraceWorker.bulk_perform_async(job_ids)
logger.info("Scheduled #{job_ids.count} jobs. From #{job_ids.min} #{job_ids.max}")
end
end
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment