We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
This document is for projects with multiple job submitters who use quotas to allocate resources among submitters.
If you use Remote job submission RPCs, read no further; those mechanisms automatically prioritize jobs based on quotas.
Otherwise, you'll need to modify your job submission scripts or work generators to set job priorities.
When you create jobs, set the priority of the jobs as follows:
adjust_user_priority --user userID --flops X --app appname
For example, in PHP:
$cmd = "cd ../../bin; ./adjust_user_priority --user $user->id --flops $flops --app $app->name"; $x = system($cmd); if (!is_numeric($x) | (double)$x == 0) { ... handle error } $priority = (double)$x;
Home