2008-08-06 18:36:30 +00:00
|
|
|
// This file is part of BOINC.
|
2008-02-21 00:47:50 +00:00
|
|
|
// http://boinc.berkeley.edu
|
|
|
|
// Copyright (C) 2008 University of California
|
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// BOINC is free software; you can redistribute it and/or modify it
|
|
|
|
// under the terms of the GNU Lesser General Public License
|
|
|
|
// as published by the Free Software Foundation,
|
|
|
|
// either version 3 of the License, or (at your option) any later version.
|
2008-02-21 00:47:50 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// BOINC is distributed in the hope that it will be useful,
|
2008-02-21 00:47:50 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
// See the GNU Lesser General Public License for more details.
|
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
2009-01-13 23:06:02 +00:00
|
|
|
//
|
2011-11-16 19:47:40 +00:00
|
|
|
|
|
|
|
// scheduler functions to send assigned jobs.
|
|
|
|
|
2009-01-13 23:06:02 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#ifdef _USING_FCGI_
|
|
|
|
#include "boinc_fcgi.h"
|
|
|
|
#else
|
|
|
|
#include <cstdio>
|
|
|
|
#endif
|
2008-02-21 00:47:50 +00:00
|
|
|
|
2012-05-09 16:11:50 +00:00
|
|
|
#include <sys/param.h>
|
2008-03-07 21:13:01 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
|
2013-08-23 00:01:45 +00:00
|
|
|
#include "backend_lib.h"
|
2008-02-21 00:47:50 +00:00
|
|
|
#include "boinc_db.h"
|
|
|
|
#include "crypt.h"
|
|
|
|
#include "error_numbers.h"
|
2013-08-23 00:01:45 +00:00
|
|
|
#include "filesys.h"
|
2008-02-21 00:47:50 +00:00
|
|
|
|
2014-05-27 04:07:07 +00:00
|
|
|
#include "sched_check.h"
|
2009-08-10 04:49:02 +00:00
|
|
|
#include "sched_main.h"
|
2008-02-21 00:47:50 +00:00
|
|
|
#include "sched_msgs.h"
|
|
|
|
#include "sched_send.h"
|
2009-03-19 16:35:35 +00:00
|
|
|
#include "sched_version.h"
|
2009-08-10 04:49:02 +00:00
|
|
|
#include "sched_types.h"
|
2008-02-21 00:47:50 +00:00
|
|
|
|
|
|
|
#include "sched_assign.h"
|
|
|
|
|
2014-05-27 17:44:50 +00:00
|
|
|
// The workunit is targeted to the host (or user or team).
|
|
|
|
// Decide if we should actually send an instance
|
|
|
|
//
|
|
|
|
bool need_targeted_instance(WORKUNIT& wu, int hostid) {
|
|
|
|
|
|
|
|
// don't send if WU had error or was canceled
|
|
|
|
// (db_purge will eventually delete WU and assignment records)
|
|
|
|
//
|
|
|
|
if (wu.error_mask) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// don't send if WU is validation pending or completed,
|
|
|
|
// or has transition pending
|
|
|
|
//
|
|
|
|
if (wu.need_validate) return false;
|
|
|
|
if (wu.canonical_resultid) return false;
|
|
|
|
if (wu.transition_time < time(0)) return false;
|
|
|
|
|
|
|
|
// See if this WU needs another instance.
|
|
|
|
// This replicates logic in the transitioner
|
|
|
|
//
|
|
|
|
char buf[256];
|
|
|
|
DB_RESULT result;
|
|
|
|
int nunsent=0, ninprogress=0, nsuccess=0;
|
2015-07-23 17:11:08 +00:00
|
|
|
sprintf(buf, "where workunitid=%lu", wu.id);
|
2014-05-27 17:44:50 +00:00
|
|
|
while (!result.enumerate(buf)) {
|
|
|
|
// send at most 1 instance to a given host
|
|
|
|
//
|
|
|
|
if (result.hostid == hostid) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
switch (result.server_state) {
|
|
|
|
case RESULT_SERVER_STATE_INACTIVE:
|
|
|
|
case RESULT_SERVER_STATE_UNSENT:
|
|
|
|
nunsent++;
|
|
|
|
break;
|
|
|
|
case RESULT_SERVER_STATE_IN_PROGRESS:
|
|
|
|
ninprogress++;
|
|
|
|
break;
|
|
|
|
case RESULT_SERVER_STATE_OVER:
|
|
|
|
if (result.outcome == RESULT_OUTCOME_SUCCESS
|
|
|
|
&& result.validate_state != VALIDATE_STATE_INVALID
|
|
|
|
) {
|
|
|
|
nsuccess++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
int needed = wu.target_nresults - nunsent - ninprogress - nsuccess;
|
|
|
|
if (needed <= 0) return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-01-30 22:39:13 +00:00
|
|
|
// send a job for the given assignment
|
|
|
|
//
|
2008-12-19 18:14:02 +00:00
|
|
|
static int send_assigned_job(ASSIGNMENT& asg) {
|
2008-02-21 00:47:50 +00:00
|
|
|
int retval;
|
|
|
|
DB_WORKUNIT wu;
|
2012-05-09 16:11:50 +00:00
|
|
|
char suffix[256], path[MAXPATHLEN];
|
2009-05-07 13:54:51 +00:00
|
|
|
const char *rtfpath;
|
2008-02-21 00:47:50 +00:00
|
|
|
static bool first=true;
|
|
|
|
static int seqno=0;
|
|
|
|
static R_RSA_PRIVATE_KEY key;
|
2008-03-27 18:25:29 +00:00
|
|
|
BEST_APP_VERSION* bavp;
|
2008-02-21 00:47:50 +00:00
|
|
|
|
|
|
|
if (first) {
|
|
|
|
first = false;
|
|
|
|
sprintf(path, "%s/upload_private", config.key_dir);
|
|
|
|
retval = read_key_file(path, key);
|
|
|
|
if (retval) {
|
2008-02-21 21:00:58 +00:00
|
|
|
log_messages.printf(MSG_CRITICAL, "can't read key\n");
|
2008-02-21 00:47:50 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
retval = wu.lookup_id(asg.workunitid);
|
|
|
|
if (retval) {
|
2008-02-27 22:26:37 +00:00
|
|
|
log_messages.printf(MSG_CRITICAL,
|
2015-07-23 17:11:08 +00:00
|
|
|
"assigned WU %lu not found\n", asg.workunitid
|
2008-02-27 22:26:37 +00:00
|
|
|
);
|
2008-02-21 00:47:50 +00:00
|
|
|
return retval;
|
|
|
|
}
|
2008-03-27 18:25:29 +00:00
|
|
|
|
2014-05-27 04:07:07 +00:00
|
|
|
if (app_not_selected(wu.appid)) {
|
2013-10-07 04:23:28 +00:00
|
|
|
log_messages.printf(MSG_CRITICAL,
|
|
|
|
"Assigned WU %s is for app not selected by user\n", wu.name
|
|
|
|
);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
- server: change the following from per-host to per-(host, app version):
- daily quota mechanism
- reliable mechanism (accelerated retries)
- "trusted" mechanism (adaptive replication)
- scheduler: enforce host scale probation only for apps with
host_scale_check set.
- validator: do scale probation on invalid results
(need this in addition to error and timeout cases)
- feeder: update app version scales every 10 min, not 10 sec
- back-end apps: support --foo as well as -foo for options
Notes:
- If you have, say, cuda, cuda23 and cuda_fermi plan classes,
a host will have separate quotas for each one.
That means it could error out on 100 jobs for cuda_fermi,
and when its quota goes to zero,
error out on 100 jobs for cuda23, etc.
This is intentional; there may be cases where one version
works but not the others.
- host.error_rate and host.max_results_day are deprecated
TODO:
- the values in the app table for limits on jobs in progress etc.
should override rather than config.xml.
Implementation notes:
scheduler:
process_request():
read all host_app_versions for host at start;
Compute "reliable" and "trusted" for each one.
write modified records at end
get_app_version():
add "reliable_only" arg; if set, use only reliable versions
skip over-quota versions
Multi-pass scheduling: if have at least one reliable version,
do a pass for jobs that need reliable,
and use only reliable versions.
Then clear best_app_versions cache.
Score-based scheduling: for need-reliable jobs,
it will pick the fastest version,
then give a score bonus if that version happens to be reliable.
When get back a successful result from client:
increase daily quota
When get back an error result from client:
impose scale probation
decrease daily quota if not aborted
Validator:
when handling a WU, create a vector of HOST_APP_VERSION
parallel to vector of RESULT.
Pass it to assign_credit_set().
Make copies of originals so we can update only modified ones
update HOST_APP_VERSION error rates
Transitioner:
decrease quota on timeout
svn path=/trunk/boinc/; revision=21181
2010-04-15 03:13:56 +00:00
|
|
|
bavp = get_app_version(wu, false, false);
|
2008-03-27 18:25:29 +00:00
|
|
|
if (!bavp) {
|
2008-02-27 22:26:37 +00:00
|
|
|
log_messages.printf(MSG_CRITICAL,
|
|
|
|
"App version for assigned WU not found\n"
|
|
|
|
);
|
2008-02-21 00:47:50 +00:00
|
|
|
return ERR_NOT_FOUND;
|
|
|
|
}
|
|
|
|
|
2009-05-07 13:54:51 +00:00
|
|
|
rtfpath = config.project_path("%s", wu.result_template_file);
|
- server code: at some point I made a global var "SCHED_CONFIG config",
mostly so that the parse function could assume
that everything was initially zero.
However, various back-end functions pass around SCHED_CONFIG&
as an argument (also named "config").
This creates a shadow, which is always bad.
Worse is the possibility that some projects have back-end programs
that have a SCHED_CONFIG variable that's automatic,
and therefore isn't zero initially,
and therefore isn't parsing correctly.
To fix this, I changed the 2 vectors in SCHED_CONFIG into pointers,
and have the parse routine zero the structure.
I was tempted to remove the SCHED_CONFIG& args to back-end functions,
but this would have broken some projects' code.
I did, however, change the name from config to config_loc
to avoid shadowing.
Also fixed various other compiler warnings.
svn path=/trunk/boinc/; revision=15541
2008-07-02 17:24:53 +00:00
|
|
|
sprintf(suffix, "%d_%d_%d", getpid(), (int)time(0), seqno++);
|
2011-09-07 17:37:50 +00:00
|
|
|
retval = create_result(
|
2013-04-03 00:23:37 +00:00
|
|
|
wu, const_cast<char*>(rtfpath), suffix, key, config, 0, 0
|
|
|
|
);
|
2008-02-21 00:47:50 +00:00
|
|
|
if (retval) {
|
2008-02-21 21:00:58 +00:00
|
|
|
log_messages.printf(MSG_CRITICAL,
|
2015-07-23 17:11:08 +00:00
|
|
|
"[WU#%lu %s] create_result(): %s\n", wu.id, wu.name, boincerror(retval)
|
2008-02-21 00:47:50 +00:00
|
|
|
);
|
|
|
|
return retval;
|
|
|
|
}
|
2015-07-23 17:11:08 +00:00
|
|
|
DB_ID_TYPE result_id = boinc_db.insert_id();
|
2011-06-06 03:40:42 +00:00
|
|
|
SCHED_DB_RESULT result;
|
2008-02-21 00:47:50 +00:00
|
|
|
retval = result.lookup_id(result_id);
|
2009-03-03 16:38:54 +00:00
|
|
|
add_result_to_reply(result, wu, bavp, false);
|
2008-02-21 00:47:50 +00:00
|
|
|
|
2008-08-19 03:00:17 +00:00
|
|
|
if (config.debug_assignment) {
|
2009-01-15 20:23:20 +00:00
|
|
|
log_messages.printf(MSG_NORMAL,
|
2015-07-23 17:11:08 +00:00
|
|
|
"[assign] [WU#%lu] [RESULT#%lu] [HOST#%lu] send assignment %lu\n",
|
2008-12-19 18:14:02 +00:00
|
|
|
wu.id, result_id, g_reply->host.id, asg.id
|
2008-08-19 03:00:17 +00:00
|
|
|
);
|
|
|
|
}
|
2008-02-21 00:47:50 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-05-27 17:44:50 +00:00
|
|
|
// Send this host any broadcast jobs.
|
2008-02-21 00:47:50 +00:00
|
|
|
// Return true iff we sent anything
|
|
|
|
//
|
2013-10-07 04:23:28 +00:00
|
|
|
bool send_broadcast_jobs() {
|
2008-02-21 00:47:50 +00:00
|
|
|
DB_RESULT result;
|
|
|
|
int retval;
|
|
|
|
char buf[256];
|
|
|
|
bool sent_something = false;
|
|
|
|
|
|
|
|
for (int i=0; i<ssp->nassignments; i++) {
|
|
|
|
ASSIGNMENT& asg = ssp->assignments[i];
|
|
|
|
|
2008-03-18 21:22:44 +00:00
|
|
|
if (config.debug_assignment) {
|
2009-01-15 20:23:20 +00:00
|
|
|
log_messages.printf(MSG_NORMAL,
|
2014-03-12 07:03:17 +00:00
|
|
|
"[assign] processing broadcast type %d\n",
|
2012-01-30 22:39:13 +00:00
|
|
|
asg.target_type
|
2008-03-18 21:22:44 +00:00
|
|
|
);
|
|
|
|
}
|
2008-02-21 00:47:50 +00:00
|
|
|
// see if this assignment applies to this host
|
|
|
|
//
|
|
|
|
switch (asg.target_type) {
|
|
|
|
case ASSIGN_NONE:
|
2015-07-23 17:11:08 +00:00
|
|
|
sprintf(buf, "where hostid=%lu and workunitid=%lu",
|
2008-12-19 18:14:02 +00:00
|
|
|
g_reply->host.id, asg.workunitid
|
2008-02-21 00:47:50 +00:00
|
|
|
);
|
|
|
|
retval = result.lookup(buf);
|
2008-02-27 22:26:37 +00:00
|
|
|
if (retval == ERR_DB_NOT_FOUND) {
|
2008-12-19 18:14:02 +00:00
|
|
|
retval = send_assigned_job(asg);
|
2008-02-21 00:47:50 +00:00
|
|
|
if (!retval) sent_something = true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case ASSIGN_USER:
|
2008-12-19 18:14:02 +00:00
|
|
|
if (g_reply->user.id != asg.target_id) continue;
|
2015-07-23 17:11:08 +00:00
|
|
|
sprintf(buf, "where workunitid=%lu and hostid=%lu",
|
2012-01-30 22:39:13 +00:00
|
|
|
asg.workunitid, g_reply->host.id
|
|
|
|
);
|
2008-02-21 00:47:50 +00:00
|
|
|
retval = result.lookup(buf);
|
2008-02-27 22:26:37 +00:00
|
|
|
if (retval == ERR_DB_NOT_FOUND) {
|
2008-12-19 18:14:02 +00:00
|
|
|
retval = send_assigned_job(asg);
|
2008-02-21 00:47:50 +00:00
|
|
|
if (!retval) sent_something = true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case ASSIGN_TEAM:
|
2008-12-19 18:14:02 +00:00
|
|
|
if (g_reply->team.id != asg.target_id) continue;
|
2015-07-23 17:11:08 +00:00
|
|
|
sprintf(buf, "where workunitid=%lu and hostid=%lu",
|
|
|
|
asg.workunitid, g_reply->host.id
|
|
|
|
);
|
2008-02-21 00:47:50 +00:00
|
|
|
retval = result.lookup(buf);
|
2008-02-27 22:26:37 +00:00
|
|
|
if (retval == ERR_DB_NOT_FOUND) {
|
2008-12-19 18:14:02 +00:00
|
|
|
retval = send_assigned_job(asg);
|
2008-02-21 00:47:50 +00:00
|
|
|
if (!retval) sent_something = true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return sent_something;
|
|
|
|
}
|
2012-01-30 22:39:13 +00:00
|
|
|
|
2014-03-12 07:03:17 +00:00
|
|
|
// Send targeted jobs of a given type.
|
|
|
|
// NOTE: there may be an atomicity problem in the following.
|
|
|
|
// Ideally it should be in a transaction.
|
2012-01-30 22:39:13 +00:00
|
|
|
//
|
2014-03-12 07:03:17 +00:00
|
|
|
bool send_jobs(int assign_type) {
|
2012-01-30 22:39:13 +00:00
|
|
|
DB_ASSIGNMENT asg;
|
|
|
|
DB_RESULT result;
|
|
|
|
DB_WORKUNIT wu;
|
2014-05-27 17:44:50 +00:00
|
|
|
int retval;
|
2014-03-12 07:03:17 +00:00
|
|
|
bool sent_something = false;
|
2014-05-27 17:44:50 +00:00
|
|
|
char query[256];
|
2012-01-30 22:39:13 +00:00
|
|
|
|
2014-03-12 07:03:17 +00:00
|
|
|
switch (assign_type) {
|
|
|
|
case ASSIGN_USER:
|
2015-07-23 17:11:08 +00:00
|
|
|
sprintf(query, "where target_type=%d and target_id=%lu and multi=0",
|
2014-03-12 07:03:17 +00:00
|
|
|
ASSIGN_USER, g_reply->user.id
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
case ASSIGN_HOST:
|
2015-07-23 17:11:08 +00:00
|
|
|
sprintf(query, "where target_type=%d and target_id=%lu and multi=0",
|
2014-03-12 07:03:17 +00:00
|
|
|
ASSIGN_HOST, g_reply->host.id
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
case ASSIGN_TEAM:
|
2015-07-23 17:11:08 +00:00
|
|
|
sprintf(query, "where target_type=%d and target_id=%lu and multi=0",
|
2014-03-12 07:03:17 +00:00
|
|
|
ASSIGN_TEAM, g_reply->team.id
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (!asg.enumerate(query)) {
|
2015-04-27 17:10:32 +00:00
|
|
|
if (!work_needed(false)) {
|
|
|
|
asg.end_enumerate();
|
|
|
|
break;
|
|
|
|
}
|
2012-01-30 22:39:13 +00:00
|
|
|
|
|
|
|
// if the WU doesn't exist, delete the assignment record.
|
|
|
|
//
|
|
|
|
retval = wu.lookup_id(asg.workunitid);
|
|
|
|
if (retval) {
|
|
|
|
asg.delete_from_db();
|
|
|
|
continue;
|
|
|
|
}
|
2014-03-12 07:03:17 +00:00
|
|
|
|
2014-05-27 17:44:50 +00:00
|
|
|
if (!need_targeted_instance(wu, g_reply->host.id)) {
|
2014-05-20 17:40:34 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2012-01-30 22:39:13 +00:00
|
|
|
// OK, send the job
|
|
|
|
//
|
2014-03-12 22:31:12 +00:00
|
|
|
if (config.debug_send) {
|
|
|
|
log_messages.printf(MSG_NORMAL,
|
|
|
|
"sending targeted job: %s\n", wu.name
|
|
|
|
);
|
|
|
|
}
|
2012-01-30 22:39:13 +00:00
|
|
|
retval = send_assigned_job(asg);
|
2014-03-12 22:31:12 +00:00
|
|
|
if (retval) {
|
|
|
|
log_messages.printf(MSG_NORMAL,
|
|
|
|
"failed to send targeted job: %s\n", boincerror(retval)
|
|
|
|
);
|
|
|
|
continue;
|
|
|
|
}
|
2012-01-30 22:39:13 +00:00
|
|
|
|
|
|
|
sent_something = true;
|
|
|
|
|
|
|
|
// update the WU's transition time to time out this job
|
|
|
|
//
|
|
|
|
retval = wu.lookup_id(asg.workunitid);
|
|
|
|
if (retval) continue;
|
|
|
|
int new_tt = time(0) + wu.delay_bound;
|
|
|
|
if (new_tt < wu.transition_time) {
|
|
|
|
char buf2[256];
|
|
|
|
sprintf(buf2, "transition_time=%d", new_tt);
|
|
|
|
wu.update_field(buf2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return sent_something;
|
|
|
|
}
|
2014-03-12 07:03:17 +00:00
|
|
|
|
|
|
|
// send targeted jobs
|
|
|
|
//
|
|
|
|
bool send_targeted_jobs() {
|
|
|
|
bool sent_something = false;
|
2014-03-12 22:31:12 +00:00
|
|
|
if (config.debug_send) {
|
|
|
|
log_messages.printf(MSG_NORMAL, "checking for targeted jobs\n");
|
|
|
|
}
|
2014-03-12 07:03:17 +00:00
|
|
|
sent_something |= send_jobs(ASSIGN_USER);
|
|
|
|
sent_something |= send_jobs(ASSIGN_HOST);
|
|
|
|
sent_something |= send_jobs(ASSIGN_TEAM);
|
|
|
|
return sent_something;
|
|
|
|
}
|