I’m building a scripted workflow to handle large numbers of file conversions through Deadline.
I’d like to have each file conversion be its own task so the conversion can be distributed across machines; but the files are large and already on the network so I don’t want to submit them as auxilliary files and clog up the repository.
What’s the right way to build a job where you want the Workers to do
Task 0 - convert.exe -switches \\server\convert\subfolder1\foo.ext
Task 1 - convert.exe -switches \\server\convert\subfolder27\bar.ext
Task 2 - convert.exe -switches \\server\convert\subfolder6125A\baz.ext
with all the file locations/names known at the outset?