At siggraph, there was an excellent presentation about FQ, framestore’s new queueing system. One thing that was very impressive is the kind of metrics they were collecting for frames / jobs.
Imagine several graphs, where the horizontal axis is time, and the vertical axis is things like:
cpu utilization for the rendering process (not the machine), based on how many cpus were allocated for the task (since all parallel jobs are going to allocated cpus only, this is practically always 1-1 with actual utilization, as opposed to random noise due to whats happening on other cpus)
incoming / outgoing bandwidth usage for the rendering process (not the machine)
kernel times / ratio with actual processing for the rendering process (not the machine)
ram usage for the rendering process (not the machine), virtual / physical
etc.
It was the most beautiful thing i have ever seen. These stats were generated PER frame for each job, and an aggregate result was also saved into the job itself to give a ‘job profile’.
Something like this would be extremely beneficial to have, at larger scales, trying to troubleshoot / optimize really becomes a priority, and without metrics, you are just guessing…
If you scroll down to the bottom image here, you’ll see that Deadline 7 currently has task graphs that you can view for the selected jobs: thinkboxsoftware.com/news/20 … ine-7.html
Note that the CPU and RAM we collect is only for the rendering process, not the machine. We already have IO on the wishlist as well.
We only track peak and average CPU and RAM per task though, not per frame.
The problem is that without the ‘slot’ / ‘block’ allocation system, those numbers are very noisy… Especially if you have other renders going on the machine. So say, you have a 24 core machine, rendering a max job and a nuke job, you don’t know why the cpu usage is only 30% on the max job… is it 30% relative to what it was assigned? Or 30% cause nuke is running at ‘realtime’ priority and takes over the machine?
So the slot mechanism would make the numbers more meaningful