can I change CPU priority?

Hi
When deadline submit a job the CPU priority is “below normal”.is it possible to change it?
Because one machine running a slave and a slave instance .I want one of the slave have higher priority to use CPU.
I know there’s CPU affinity option .but I think change priority is better.
Thank you :slight_smile:

This is controlled at the app plugin level, so you just need to add the line to the app plugin you are rendering with. However, it’s generally best to leave it at “BelowNormal” for stability reasons. I’ve always found messing with ProcessPriority leads to disaster! YMMV.

docs.thinkboxsoftware.com/produc … cf004568d8

So, it would look like this:

def InitializeProcess( self ): self.ProcessPriority = ProcessPriorityClass.BelowNormal

great thank you very much