And from what I see in the Monitor, it looks like one worker picks up the job, then splits it into tasks for other workers to pick up. That first worker however, it keeps on working on that initial job, it doesn't switch to one of those tasks it created. It doesn't render anything but it's not idle either.
I found a thread where someone's solution was to create a new worker on the same machine using a command
deadlineworker -name "instance-01"
And it does work, but now we have two permanent workers on the same machine and it makes a mess.
So my questions are, what is happening and can we do something about it to make it cleaner?