The frame number and the tile number have been transposed with slightly different underscore locations. How should I be formatting my output files to get them to read happily?
The job was submitted using Deadline Monitor’s integrated Houdini Job Submitter using the following values:
As near as we can tell it has to do with how the generated text documents are generating their filenames. (i.e., gwar0001.tif_1_config_2018_01_22_14_17_33.txt lists the correct filename we want the final frame to go to, (/path/to/gwar001.tif), but Tile0FileName=/path/to/gwar0001_tile0_.tif, when we want it to be Tile0FileName=/path/to/gwar_tile0_0001.tif.
Where is this text document generated? Digging through what documentation we have we can’t find it, but if we can alter how that gets generated we can solve the problem, we think.
(one for Jigsaw, one for regular tiles).
There you will see the code that builds the regionOutputFileName variable with padding etc.
However, I would have expected it to match the definitions of the same variable used in the render output key=value pair
Found the issue. When we submitted through the Python API we had to just specifiy the frame number (1001) for the final output, but the integrated submitter was looking for $F4 instead. Doing that fixed it. Now to figure out why the output is completely blank. Thanks for the help!