2008-08-06 18:36:30 +00:00
|
|
|
// This file is part of BOINC.
|
2005-08-04 03:50:04 +00:00
|
|
|
// http://boinc.berkeley.edu
|
2008-08-06 18:36:30 +00:00
|
|
|
// Copyright (C) 2008 University of California
|
2005-08-04 03:50:04 +00:00
|
|
|
//
|
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.
|
2005-08-04 03:50:04 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// BOINC is distributed in the hope that it will be useful,
|
2005-08-04 03:50:04 +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/>.
|
2005-08-04 03:50:04 +00:00
|
|
|
|
- scheduler: add <workload_sim> config option.
If set, the scheduler will use EDF simulation,
together with the in-progress workload reported by the client,
to avoid sending results that
1) will miss their deadline, or
2) will cause an in-progress result to miss its deadline, or
3) will make an in-progress result miss its deadline
by more than is already predicted.
If this option is not set, or if the client request doesn't
include a workload description (i.e. the client is old)
use the existing approach, which assumes there's no workload.
NOTE: this is experimental. Production projects should not use it.
- EDF sim: write debug stuff to stderr instead of stdout
- Account manager:
- if an account is detach_when_done, set dont_request_more_work
- check done_request_more_work even for first-time projects
- update_uotd: generate a file for use by Google gadget
- user_links(): use full URLs (so can use in Google gadget)
client/
acct_mgr.C
work_fetch.C
html/
inc/
uotd.inc
util.inc
user/
uotd_gadget.php (new)
sched/
Makefile.am
edf_sim.C
sched_config.C,h
sched_resend.C
sched_send.C,h
server_types.C,h
svn path=/trunk/boinc/; revision=12639
2007-05-10 21:50:52 +00:00
|
|
|
// scheduler code related to sending "lost" work
|
|
|
|
// (i.e. results we sent to the host, but which they're not reporting)
|
|
|
|
//
|
|
|
|
// TODO:
|
|
|
|
// - make sure result is still needed (no canonical result yet)
|
|
|
|
// - don't send if project has been reset since first send;
|
|
|
|
// this result may have been the cause of reset
|
|
|
|
// (need to pass last reset time from client)
|
2005-08-04 03:50:04 +00:00
|
|
|
|
2008-02-27 23:26:38 +00:00
|
|
|
#include <cstdlib>
|
|
|
|
#include <cstring>
|
|
|
|
#include <string>
|
|
|
|
|
2005-11-21 18:34:44 +00:00
|
|
|
#include "config.h"
|
2005-08-04 03:50:04 +00:00
|
|
|
#include "error_numbers.h"
|
|
|
|
|
|
|
|
#include "server_types.h"
|
|
|
|
#include "sched_shmem.h"
|
|
|
|
#include "sched_config.h"
|
|
|
|
#include "sched_util.h"
|
|
|
|
#include "sched_msgs.h"
|
|
|
|
#include "sched_send.h"
|
|
|
|
#include "sched_locality.h"
|
2005-08-04 03:58:00 +00:00
|
|
|
|
|
|
|
#include "sched_resend.h"
|
2005-08-04 03:50:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef _USING_FCGI_
|
|
|
|
#include "fcgi_stdio.h"
|
|
|
|
#else
|
|
|
|
#define FCGI_ToFILE(x) (x)
|
|
|
|
#endif
|
|
|
|
|
- scheduler: add <workload_sim> config option.
If set, the scheduler will use EDF simulation,
together with the in-progress workload reported by the client,
to avoid sending results that
1) will miss their deadline, or
2) will cause an in-progress result to miss its deadline, or
3) will make an in-progress result miss its deadline
by more than is already predicted.
If this option is not set, or if the client request doesn't
include a workload description (i.e. the client is old)
use the existing approach, which assumes there's no workload.
NOTE: this is experimental. Production projects should not use it.
- EDF sim: write debug stuff to stderr instead of stdout
- Account manager:
- if an account is detach_when_done, set dont_request_more_work
- check done_request_more_work even for first-time projects
- update_uotd: generate a file for use by Google gadget
- user_links(): use full URLs (so can use in Google gadget)
client/
acct_mgr.C
work_fetch.C
html/
inc/
uotd.inc
util.inc
user/
uotd_gadget.php (new)
sched/
Makefile.am
edf_sim.C
sched_config.C,h
sched_resend.C
sched_send.C,h
server_types.C,h
svn path=/trunk/boinc/; revision=12639
2007-05-10 21:50:52 +00:00
|
|
|
// Assign a new deadline for the result;
|
|
|
|
// if it's not likely to complete by this time, return nonzero.
|
|
|
|
// TODO: EXPLAIN THE FORMULA FOR NEW DEADLINE
|
2005-08-04 03:50:04 +00:00
|
|
|
//
|
|
|
|
static int possibly_give_result_new_deadline(
|
|
|
|
DB_RESULT& result, WORKUNIT& wu, SCHEDULER_REPLY& reply
|
|
|
|
) {
|
|
|
|
const double resend_frac = 0.5; // range [0, 1)
|
2007-11-30 23:02:55 +00:00
|
|
|
int now = time(0);
|
|
|
|
int result_report_deadline = now + (int)(resend_frac*(result.report_deadline - result.sent_time));
|
2005-08-04 03:50:04 +00:00
|
|
|
|
|
|
|
if (result_report_deadline < result.report_deadline) {
|
|
|
|
result_report_deadline = result.report_deadline;
|
|
|
|
}
|
2007-11-30 23:02:55 +00:00
|
|
|
if (result_report_deadline > now + wu.delay_bound) {
|
|
|
|
result_report_deadline = now + wu.delay_bound;
|
2005-08-04 03:50:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// If infeasible, return without modifying result
|
|
|
|
//
|
2007-11-30 23:02:55 +00:00
|
|
|
if (estimate_cpu_duration(wu, reply) > result_report_deadline-now) {
|
2008-08-19 03:00:17 +00:00
|
|
|
if (config.debug_resend) {
|
|
|
|
log_messages.printf(MSG_DEBUG,
|
|
|
|
"[RESULT#%d] [HOST#%d] not resending lost result: can't complete in time\n",
|
|
|
|
result.id, reply.host.id
|
|
|
|
);
|
|
|
|
}
|
2005-08-04 03:50:04 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// update result with new report time and sent time
|
|
|
|
//
|
2008-08-19 03:00:17 +00:00
|
|
|
if (config.debug_resend) {
|
|
|
|
log_messages.printf(MSG_DEBUG,
|
|
|
|
"[RESULT#%d] [HOST#%d] %s report_deadline (resend lost work)\n",
|
|
|
|
result.id, reply.host.id,
|
|
|
|
result_report_deadline==result.report_deadline?"NO update to":"Updated"
|
|
|
|
);
|
|
|
|
}
|
2007-11-30 23:02:55 +00:00
|
|
|
result.sent_time = now;
|
2005-08-04 03:50:04 +00:00
|
|
|
result.report_deadline = result_report_deadline;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-11-30 23:02:55 +00:00
|
|
|
// resend any jobs that:
|
|
|
|
// 1) we already sent to this host;
|
|
|
|
// 2) are still in progress (i.e. haven't timed out) and
|
|
|
|
// 3) aren't present on the host
|
|
|
|
// Return true if there were any such jobs
|
|
|
|
//
|
2008-02-22 22:21:00 +00:00
|
|
|
bool resend_lost_work(SCHEDULER_REQUEST& sreq, SCHEDULER_REPLY& reply) {
|
2005-08-04 03:50:04 +00:00
|
|
|
DB_RESULT result;
|
|
|
|
std::vector<DB_RESULT>results;
|
|
|
|
unsigned int i;
|
|
|
|
char buf[256];
|
2007-11-30 23:02:55 +00:00
|
|
|
char warning_msg[256];
|
2005-08-04 03:50:04 +00:00
|
|
|
bool did_any = false;
|
2007-11-30 23:02:55 +00:00
|
|
|
int num_eligible_to_resend=0;
|
2005-08-04 03:50:04 +00:00
|
|
|
int num_resent=0;
|
2008-03-27 18:25:29 +00:00
|
|
|
BEST_APP_VERSION* bavp;
|
2005-08-04 03:50:04 +00:00
|
|
|
int retval;
|
|
|
|
|
|
|
|
sprintf(buf, " where hostid=%d and server_state=%d ",
|
|
|
|
reply.host.id, RESULT_SERVER_STATE_IN_PROGRESS
|
|
|
|
);
|
|
|
|
while (!result.enumerate(buf)) {
|
|
|
|
bool found = false;
|
|
|
|
for (i=0; i<sreq.other_results.size(); i++) {
|
|
|
|
OTHER_RESULT& orp = sreq.other_results[i];
|
|
|
|
if (!strcmp(orp.name.c_str(), result.name)) {
|
|
|
|
found = true;
|
2007-11-30 23:02:55 +00:00
|
|
|
break;
|
2005-08-04 03:50:04 +00:00
|
|
|
}
|
|
|
|
}
|
2007-11-30 23:02:55 +00:00
|
|
|
if (found) continue;
|
|
|
|
|
|
|
|
num_eligible_to_resend++;
|
2008-08-19 03:00:17 +00:00
|
|
|
if (config.debug_resend) {
|
|
|
|
log_messages.printf(MSG_DEBUG,
|
|
|
|
"[HOST#%d] found lost [RESULT#%d]: %s\n",
|
|
|
|
reply.host.id, result.id, result.name
|
|
|
|
);
|
|
|
|
}
|
2007-11-30 23:02:55 +00:00
|
|
|
|
|
|
|
DB_WORKUNIT wu;
|
|
|
|
retval = wu.lookup_id(result.workunitid);
|
|
|
|
if (retval) {
|
2008-02-21 21:00:58 +00:00
|
|
|
log_messages.printf(MSG_CRITICAL,
|
2007-11-30 23:02:55 +00:00
|
|
|
"[HOST#%d] WU not found for [RESULT#%d]\n",
|
|
|
|
reply.host.id, result.id
|
2005-08-04 03:50:04 +00:00
|
|
|
);
|
2007-11-30 23:02:55 +00:00
|
|
|
continue;
|
|
|
|
}
|
2005-08-04 03:50:04 +00:00
|
|
|
|
2008-03-27 18:25:29 +00:00
|
|
|
bavp = get_app_version(sreq, reply, wu);
|
|
|
|
if (!bavp) {
|
2008-02-21 21:00:58 +00:00
|
|
|
log_messages.printf(MSG_CRITICAL,
|
2007-11-30 23:02:55 +00:00
|
|
|
"[HOST#%d] no app version [RESULT#%d]\n",
|
|
|
|
reply.host.id, result.id
|
|
|
|
);
|
|
|
|
continue;
|
|
|
|
}
|
2005-08-04 03:50:04 +00:00
|
|
|
|
2007-11-30 23:02:55 +00:00
|
|
|
// If time is too close to the deadline,
|
|
|
|
// or we already have a canonical result,
|
|
|
|
// or WU error flag is set,
|
|
|
|
// then don't bother to resend this result.
|
|
|
|
// Instead make it time out right away
|
|
|
|
// so that the transitioner does 'the right thing'.
|
|
|
|
//
|
|
|
|
if (
|
|
|
|
wu.error_mask ||
|
|
|
|
wu.canonical_resultid ||
|
|
|
|
possibly_give_result_new_deadline(result, wu, reply)
|
|
|
|
) {
|
2008-08-19 03:00:17 +00:00
|
|
|
if (config.debug_resend) {
|
|
|
|
log_messages.printf(MSG_DEBUG,
|
|
|
|
"[HOST#%d][RESULT#%d] not needed or too close to deadline, expiring\n",
|
|
|
|
reply.host.id, result.id
|
|
|
|
);
|
|
|
|
}
|
2007-11-30 23:02:55 +00:00
|
|
|
result.report_deadline = time(0)-1;
|
|
|
|
retval = result.mark_as_sent(result.server_state);
|
2005-08-04 03:50:04 +00:00
|
|
|
if (retval) {
|
2008-02-21 21:00:58 +00:00
|
|
|
log_messages.printf(MSG_CRITICAL,
|
2007-11-30 23:02:55 +00:00
|
|
|
"resend_lost_work: can't update result deadline: %d\n", retval
|
2005-08-04 03:50:04 +00:00
|
|
|
);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2007-11-30 23:02:55 +00:00
|
|
|
retval = update_wu_transition_time(wu, result.report_deadline);
|
|
|
|
if (retval) {
|
2008-02-21 21:00:58 +00:00
|
|
|
log_messages.printf(MSG_CRITICAL,
|
2007-11-30 23:02:55 +00:00
|
|
|
"resend_lost_result: can't update WU transition time: %d\n", retval
|
2005-08-04 03:50:04 +00:00
|
|
|
);
|
|
|
|
continue;
|
|
|
|
}
|
2007-11-30 23:02:55 +00:00
|
|
|
sprintf(warning_msg,
|
|
|
|
"Didn't resend lost result %s (expired)", result.name
|
|
|
|
);
|
|
|
|
USER_MESSAGE um(warning_msg, "high");
|
|
|
|
reply.insert_message(um);
|
|
|
|
} else {
|
2008-03-27 18:25:29 +00:00
|
|
|
retval = add_result_to_reply(result, wu, sreq, reply, bavp);
|
2005-08-04 03:50:04 +00:00
|
|
|
if (retval) {
|
2008-02-21 21:00:58 +00:00
|
|
|
log_messages.printf(MSG_CRITICAL,
|
2005-08-04 03:50:04 +00:00
|
|
|
"[HOST#%d] failed to send [RESULT#%d]\n",
|
|
|
|
reply.host.id, result.id
|
|
|
|
);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
sprintf(warning_msg, "Resent lost result %s", result.name);
|
|
|
|
USER_MESSAGE um(warning_msg, "high");
|
|
|
|
reply.insert_message(um);
|
|
|
|
num_resent++;
|
|
|
|
did_any = true;
|
|
|
|
}
|
|
|
|
}
|
2007-05-14 15:21:38 +00:00
|
|
|
|
2008-08-19 03:00:17 +00:00
|
|
|
if (num_eligible_to_resend && config.debug_resend) {
|
2008-02-21 21:00:58 +00:00
|
|
|
log_messages.printf(MSG_DEBUG,
|
2007-11-30 23:02:55 +00:00
|
|
|
"[HOST#%d] %d lost results, resent %d\n", reply.host.id, num_eligible_to_resend, num_resent
|
2005-08-04 03:50:04 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return did_any;
|
|
|
|
}
|
|
|
|
|
2005-09-13 09:01:56 +00:00
|
|
|
const char *BOINC_RCSID_3be23838b4="$Id$";
|