infeasible_count is a count of how many hosts we were unable to
send this job to (e.g. because they didn't have enough RAM).

The idea is to give preference to jobs that can be handled by this host,
but couldn't be handled by other hosts.
I.e. send hard jobs in preference to easy jobs.

-- David

On 01-May-2014 3:25 PM, Jon Sonntag wrote:
I'm trying to debug a scheduler issue where users are being sent jobs for
apps that are not selected.  In doing so, I came across the following in in
the function JOB::get_score:

if (wu_result.infeasible_count) {
     score += 1;
}

If the WU is infeasible for any reason, why would the score be increased?
  I would think it shouldn't be sent at all. As such, shouldn't the logic be:

if (wu_result.infeasible_count) {
     return false;
}


Jon Sonntag
_______________________________________________
boinc_dev mailing list
[email protected]
http://lists.ssl.berkeley.edu/mailman/listinfo/boinc_dev
To unsubscribe, visit the above URL and
(near bottom of page) enter your email address.

_______________________________________________
boinc_dev mailing list
[email protected]
http://lists.ssl.berkeley.edu/mailman/listinfo/boinc_dev
To unsubscribe, visit the above URL and
(near bottom of page) enter your email address.

Reply via email to