f0b0e7fd9a
use dedicated archives queue As the used disk space will increase, we want a fined grain control move zip logic in dedicated method zip wip wip fix(spec): pass spec in green tech(improvements): avoid File.delete(folder), favor FileUtils.remove_entry_secure which is safer. Also wrap most of code that open file within blocks so it is cleaned when the block ends. Lastly use attachement.download to avoid big memory pressure [download in chunk, write in chunk] otherwise big file [124>1GO] are loaded in memory. what if we run multiple jobs/download in parallel ? fix(spec): try to retry with grace clean(procedure_archive_service_spec.rb): better retry [avoid to rewrite on open file] lint(things): everything
9 lines
222 B
Ruby
9 lines
222 B
Ruby
class ArchiveCreationJob < ApplicationJob
|
|
queue_as :archives
|
|
|
|
def perform(procedure, archive, instructeur)
|
|
ProcedureArchiveService
|
|
.new(procedure)
|
|
.collect_files_archive(archive, instructeur)
|
|
end
|
|
end
|