We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm not so sure this is a bug or a designed spec. But a common expectation of job scheduler is
https://lists.aswf.io/g/opencue-user/topic/81488413#414 A useful default might be highest priority and then oldest first, for example.
A useful default might be highest priority and then oldest first, for example.
The oldest will run first if the priority is the same.
The SQL uses ORDER BY only with priority.
ORDER BY
OpenCue/cuebot/src/main/java/com/imageworks/spcue/dao/postgres/DispatchQuery.java
Line 28 in c22fe12
I think we can change this to achieve highest priority first and then oldest int the same priority.
(ORDER BY job_resource.int_priority DESC, job.ts_started ASC)
We can also use opencue.properties to change the runtime behavior.
opencue.properties
dispatcher.dispatch_oldest_first_in_priority
false
(ORDER BY job_resource.int_priority DESC)
true
Is this specifically designed to not to use the age of job? Any thoughts?
The text was updated successfully, but these errors were encountered:
Set true to dispatcher.fifo_scheduling_enabled property to enable FIFO scheduling.
dispatcher.fifo_scheduling_enabled
Sorry, something went wrong.
No branches or pull requests
I'm not so sure this is a bug or a designed spec. But a common expectation of job scheduler is
https://lists.aswf.io/g/opencue-user/topic/81488413#414
A useful default might be highest priority and then oldest first, for example.
The oldest will run first if the priority is the same.
The SQL uses
ORDER BY
only with priority.OpenCue/cuebot/src/main/java/com/imageworks/spcue/dao/postgres/DispatchQuery.java
Line 28 in c22fe12
I think we can change this to achieve highest priority first and then oldest int the same priority.
We can also use
opencue.properties
to change the runtime behavior.dispatcher.dispatch_oldest_first_in_priority
false
(default):(ORDER BY job_resource.int_priority DESC)
true
:(ORDER BY job_resource.int_priority DESC, job.ts_started ASC)
Is this specifically designed to not to use the age of job?
Any thoughts?
The text was updated successfully, but these errors were encountered: