Merge pull request #10241 from tchak/maintenance-task-optimize

chore(task): optimize maintenance task
This commit is contained in:
Paul Chavard 2024-03-28 16:48:33 +00:00 committed by GitHub
commit f8accdcb8d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2,16 +2,21 @@
module Maintenance
class FillChampsStableIdTask < MaintenanceTasks::Task
BATCH = 1_000
def collection
Dossier.all
(Dossier.last.id / BATCH).ceil.times.to_a
end
def process(dossier)
dossier.champs
.includes(:type_de_champ)
.where(stable_id: nil)
def process(batch_number)
dossier_id_start = batch_number * BATCH
dossier_id_end = dossier_id_start + BATCH
Champ
.where(dossier_id: dossier_id_start..dossier_id_end, stable_id: nil)
.joins(:type_de_champ)
.select('champs.id, types_de_champ.stable_id as type_de_champ_stable_id')
.find_each do |champ|
champ.update_columns(stable_id: champ.stable_id, stream: 'main')
champ.update_columns(stable_id: champ.type_de_champ_stable_id, stream: 'main')
end
end
end