Merge pull request #9309 from demarches-simplifiees/long_migration

Ajout d'un cron pour maintenir le nombre de pjs en cours de migration entre 0 et 200K
This commit is contained in:
LeSim 2023-07-12 10:36:24 +00:00 committed by GitHub
commit 0240723b45
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,26 @@
class Cron::PjsMigrationCronJob < Cron::CronJob
self.schedule_expression = "every 15 minutes"
def perform(*args)
# avoid reschedule enqueued jobs
# but ignore fail jobs
return if migration_jobs.count > 100
blobs = ActiveStorage::Blob
.where.not("key LIKE '%/%'")
.limit(200_000)
blobs.in_batches { |batch| batch.ids.each { |id| PjsMigrationJob.perform_later(id) } }
end
def self.schedulable?
ENV.fetch("MIGRATE_PJS", "enabled") == "enabled"
end
private
def migration_jobs
Delayed::Job
.where(queue: 'pj_migration_jobs')
end
end