Configure worker priorities and counts
masterQue uses a priority-based worker pool. You can manage capacity at different priority levels using --worker-priorities or --worker-count.
--worker-priorities [LIST]: Assigns specific priorities to workers. For example,--worker-priorities=10,30,50,any,any,anyreserves one worker for priority < 10, one for < 30, one for < 50, and three for any priority.--worker-count [COUNT]: A shorthand for creating N workers at theanypriority level.- Combining both: If both are provided,
--worker-countwill pad or trim the list withanyworkers. For example,--worker-priorities=20,30,40 --worker-count=6results in20,30,40,any,any,any.