2008-08-06 18:36:30 +00:00
|
|
|
// This file is part of BOINC.
|
2005-01-20 23:22:22 +00:00
|
|
|
// http://boinc.berkeley.edu
|
2008-08-06 18:36:30 +00:00
|
|
|
// Copyright (C) 2008 University of California
|
2003-08-15 22:39:56 +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.
|
2003-08-15 22:39:56 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// BOINC is distributed in the hope that it will be useful,
|
2005-01-20 23:22:22 +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.
|
2002-12-03 18:57:40 +00:00
|
|
|
//
|
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/>.
|
2002-12-03 18:57:40 +00:00
|
|
|
|
2003-09-02 21:16:55 +00:00
|
|
|
#ifndef _SCHED_CONFIG_
|
|
|
|
#define _SCHED_CONFIG_
|
2002-10-04 20:35:56 +00:00
|
|
|
|
2008-02-25 18:05:04 +00:00
|
|
|
#include "regex.h"
|
|
|
|
#include <vector>
|
2009-02-26 00:23:23 +00:00
|
|
|
#include <cstdio>
|
2008-07-21 22:29:10 +00:00
|
|
|
|
2008-02-25 18:05:04 +00:00
|
|
|
using std::vector;
|
|
|
|
|
2002-12-03 18:57:40 +00:00
|
|
|
// parsed version of server configuration file
|
2002-10-03 18:33:46 +00:00
|
|
|
//
|
2003-09-02 21:16:55 +00:00
|
|
|
class SCHED_CONFIG {
|
2002-10-03 18:33:46 +00:00
|
|
|
public:
|
2006-03-07 21:46:49 +00:00
|
|
|
char master_url[256];
|
2004-05-02 15:55:17 +00:00
|
|
|
char long_name[256];
|
2002-10-03 18:33:46 +00:00
|
|
|
char db_name[256];
|
2004-01-15 23:53:13 +00:00
|
|
|
char db_user[256];
|
2002-10-03 18:33:46 +00:00
|
|
|
char db_passwd[256];
|
2003-12-11 19:05:52 +00:00
|
|
|
char db_host[256];
|
2002-10-03 18:33:46 +00:00
|
|
|
int shmem_key;
|
2009-05-07 13:54:51 +00:00
|
|
|
char project_dir[256];
|
2002-10-03 18:33:46 +00:00
|
|
|
char key_dir[256];
|
2002-10-14 23:10:12 +00:00
|
|
|
char download_url[256];
|
2002-12-17 19:00:43 +00:00
|
|
|
char download_dir[256];
|
2002-10-14 23:10:12 +00:00
|
|
|
char upload_url[256];
|
2002-10-03 18:33:46 +00:00
|
|
|
char upload_dir[256];
|
2005-05-24 04:32:36 +00:00
|
|
|
char sched_lockfile_dir[256];
|
2007-04-05 17:02:01 +00:00
|
|
|
int grace_period_hours;
|
|
|
|
int delete_delay_hours;
|
2003-10-16 19:03:49 +00:00
|
|
|
bool one_result_per_user_per_wu;
|
2007-03-11 03:15:17 +00:00
|
|
|
bool one_result_per_host_per_wu;
|
2004-06-24 21:00:13 +00:00
|
|
|
bool msg_to_host;
|
2003-12-31 23:09:21 +00:00
|
|
|
int min_sendwork_interval;
|
2007-05-14 15:21:38 +00:00
|
|
|
int max_wus_in_progress;
|
2009-06-01 22:15:14 +00:00
|
|
|
int max_wus_in_progress_gpu;
|
2004-04-14 23:32:17 +00:00
|
|
|
bool non_cpu_intensive;
|
2006-06-20 17:36:28 +00:00
|
|
|
bool verify_files_on_app_start;
|
2007-06-14 15:05:20 +00:00
|
|
|
int homogeneous_redundancy;
|
2004-09-10 21:02:11 +00:00
|
|
|
bool locality_scheduling;
|
2007-04-16 22:22:15 +00:00
|
|
|
bool locality_scheduling_sorted_order;
|
2004-06-07 03:34:07 +00:00
|
|
|
bool ignore_upload_certificates;
|
2004-09-24 21:28:12 +00:00
|
|
|
bool dont_generate_upload_certificates;
|
2005-02-14 04:39:07 +00:00
|
|
|
bool ignore_delay_bound;
|
2009-06-01 22:15:14 +00:00
|
|
|
int gpu_multiplier; // mult is NCPUS + this*NGPUS
|
|
|
|
int daily_result_quota; // max results per day is this * mult
|
|
|
|
int max_wus_to_send; // max results per RPC is this * mult
|
2004-08-05 11:35:09 +00:00
|
|
|
int uldl_dir_fanout; // fanout of ul/dl dirs; 0 if none
|
2005-11-21 18:34:44 +00:00
|
|
|
int uldl_dir_levels;
|
2005-01-09 06:38:42 +00:00
|
|
|
int locality_scheduling_wait_period;
|
2005-01-12 00:50:32 +00:00
|
|
|
int locality_scheduling_send_timeout;
|
2009-03-03 00:25:41 +00:00
|
|
|
vector<regex_t> *locality_scheduling_workunit_file;
|
|
|
|
vector<regex_t> *locality_scheduling_sticky_file;
|
2009-03-03 00:12:55 +00:00
|
|
|
double locality_scheduler_fraction;
|
2005-01-19 05:34:18 +00:00
|
|
|
int min_core_client_version;
|
2005-02-09 04:38:19 +00:00
|
|
|
int min_core_client_version_announced;
|
|
|
|
int min_core_client_upgrade_deadline;
|
2009-03-02 23:47:11 +00:00
|
|
|
char replace_download_url_by_timezone[256];
|
2005-02-02 21:57:11 +00:00
|
|
|
bool cache_md5_info;
|
2005-03-13 20:10:03 +00:00
|
|
|
bool nowork_skip;
|
2005-07-28 09:29:12 +00:00
|
|
|
bool resend_lost_results;
|
2007-04-05 17:02:01 +00:00
|
|
|
bool send_result_abort;
|
2005-11-01 04:19:10 +00:00
|
|
|
bool use_benchmark_weights;
|
|
|
|
double fp_benchmark_weight;
|
2005-12-17 04:53:48 +00:00
|
|
|
double default_disk_max_used_gb;
|
|
|
|
double default_disk_max_used_pct;
|
|
|
|
double default_disk_min_free_gb;
|
2006-05-22 09:54:31 +00:00
|
|
|
char symstore[256];
|
2006-05-25 18:51:57 +00:00
|
|
|
double next_rpc_delay;
|
2006-06-07 04:10:04 +00:00
|
|
|
int sched_debug_level;
|
|
|
|
int fuh_debug_level;
|
2008-03-07 21:13:01 +00:00
|
|
|
double reliable_max_error_rate; // max error rate for a host to be declared reliable
|
- 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
|
|
|
int reliable_max_avg_turnaround;
|
|
|
|
// max average turnaround for a host to be declared reliable
|
|
|
|
int reliable_priority_on_over;
|
|
|
|
// additional results generated after at least one result
|
|
|
|
// is over will have their priority boosted by this amount
|
|
|
|
int reliable_priority_on_over_except_error;
|
|
|
|
// additional results generated after at least one result is over
|
|
|
|
// (unless their is an error) will have their priority boosted
|
|
|
|
// by this amount
|
|
|
|
int reliable_on_priority;
|
|
|
|
// results with a priority equal or greater than this value
|
|
|
|
// will be sent to reliable hosts
|
|
|
|
double reliable_reduced_delay_bound;
|
|
|
|
// Reduce the delay bounds for reliable hosts by this percent
|
2008-03-07 21:13:01 +00:00
|
|
|
int granted_credit_ramp_up;
|
|
|
|
double granted_credit_weight;
|
2008-03-27 21:39:02 +00:00
|
|
|
bool distinct_beta_apps;
|
|
|
|
// allow users to select beta apps independently
|
- 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
|
|
|
bool workload_sim;
|
|
|
|
// Do workload simulation in deciding whether to send a result
|
2007-05-24 16:07:21 +00:00
|
|
|
bool ended;
|
|
|
|
// Project has ended - tell clients to detach
|
2007-05-29 21:45:01 +00:00
|
|
|
int shmem_work_items;
|
|
|
|
// number of work items in shared memory
|
|
|
|
int feeder_query_size;
|
|
|
|
// number of work items to request in each feeder query
|
2007-06-12 21:40:32 +00:00
|
|
|
bool no_amd_k6;
|
|
|
|
// don't allow AMD K6 CPUs
|
2007-06-27 20:09:18 +00:00
|
|
|
char httpd_user[256];
|
|
|
|
// user name under which web server runs (default: apache)
|
2007-09-17 15:58:36 +00:00
|
|
|
int file_deletion_strategy;
|
|
|
|
// select method of automatically deleting files from host
|
2008-01-13 00:12:14 +00:00
|
|
|
bool request_time_stats_log;
|
2008-02-21 00:47:50 +00:00
|
|
|
bool enable_assignment;
|
2008-02-21 20:10:10 +00:00
|
|
|
int max_ncpus;
|
- 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
|
|
|
vector<regex_t> *ban_os;
|
|
|
|
vector<regex_t> *ban_cpu;
|
2008-05-23 16:13:30 +00:00
|
|
|
bool matchmaker;
|
|
|
|
int mm_min_slots;
|
|
|
|
int mm_max_slots;
|
2008-05-06 19:53:49 +00:00
|
|
|
bool job_size_matching;
|
2008-08-06 23:30:22 +00:00
|
|
|
bool use_credit_multiplier;
|
2008-09-04 08:33:21 +00:00
|
|
|
bool multiple_clients_per_host;
|
2008-10-01 19:48:52 +00:00
|
|
|
bool no_vista_sandbox;
|
2008-12-12 17:03:54 +00:00
|
|
|
bool ignore_dcf;
|
2009-05-14 19:01:40 +00:00
|
|
|
int report_max;
|
2008-05-23 16:13:30 +00:00
|
|
|
|
2008-03-18 21:22:44 +00:00
|
|
|
// log flags
|
|
|
|
//
|
|
|
|
bool debug_version_select;
|
|
|
|
bool debug_assignment;
|
2008-04-23 23:34:26 +00:00
|
|
|
bool debug_prefs;
|
2008-04-26 23:34:38 +00:00
|
|
|
bool debug_send;
|
2008-08-19 03:00:17 +00:00
|
|
|
bool debug_resend;
|
2008-05-02 17:48:29 +00:00
|
|
|
bool debug_request_headers;
|
|
|
|
bool debug_user_messages;
|
|
|
|
bool debug_request_details;
|
|
|
|
bool debug_handle_results;
|
2008-05-08 17:48:40 +00:00
|
|
|
bool debug_edf_sim_workload; // show workload for EDF sim
|
|
|
|
bool debug_edf_sim_detail; // show details of EDF sim
|
2009-01-15 20:23:20 +00:00
|
|
|
bool debug_locality; // locality scheduling
|
2009-03-07 01:00:05 +00:00
|
|
|
bool debug_array; // debug old-style array scheduling
|
2002-10-03 18:33:46 +00:00
|
|
|
|
2006-05-25 05:22:10 +00:00
|
|
|
int parse(FILE*);
|
2009-05-07 13:54:51 +00:00
|
|
|
int parse_file(const char *dir = 0);
|
2007-04-18 20:49:58 +00:00
|
|
|
|
2007-04-19 22:11:25 +00:00
|
|
|
int upload_path(const char*, char*);
|
|
|
|
int download_path(const char*, char*);
|
2009-05-07 13:54:51 +00:00
|
|
|
|
|
|
|
const char *project_path(const char *, ...);
|
2002-10-03 18:33:46 +00:00
|
|
|
};
|
2002-10-04 20:35:56 +00:00
|
|
|
|
2008-02-25 18:05:04 +00:00
|
|
|
extern SCHED_CONFIG config;
|
|
|
|
|
2002-10-04 20:35:56 +00:00
|
|
|
#endif
|