Skip to content

Commit

Permalink
EH: JG GE-3584 increase MAX_DYN_EC
Browse files Browse the repository at this point in the history
Review: MD
  • Loading branch information
jgabler committed Jul 4, 2011
1 parent 6202b23 commit b449607
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/man/man5/sge_conf.5
Original file line number Diff line number Diff line change
Expand Up @@ -1090,7 +1090,7 @@ if the \fIreschedule_unknown\fP parameter is activated.
.PP
.IP "\fIMAX_DYN_EC\fP"
Sets the max number of dynamic event clients (as used by qsub -sync y
and by xxQS_NAMExx DRMAA API library sessions). The default is set to 99.
and by xxQS_NAMExx DRMAA API library sessions). The default is set to 1000.
The number of dynamic event clients should not be bigger than half of
the number of file descriptors the system has. The number of file
descriptors are shared among the connections to all exec hosts, all
Expand Down
4 changes: 2 additions & 2 deletions source/libs/sgeobj/sge_conf.c
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ static bool enable_mtrace = false;

static long ptf_max_priority = -999;
static long ptf_min_priority = -999;
static int max_dynamic_event_clients = 99;
static int max_dynamic_event_clients = 1000;
static bool keep_active = false;
static bool enable_windomacc = false;
#ifdef LINUX
Expand Down Expand Up @@ -678,7 +678,7 @@ int merge_configuration(lList **answer_list, u_long32 progid, const char *cell_r
prof_tevent_thrd = false;
monitor_time = 0;
scheduler_timeout = 0;
max_dynamic_event_clients = 99;
max_dynamic_event_clients = 1000;
max_job_deletion_time = 3;
enable_reschedule_kill = false;
enable_reschedule_slave = false;
Expand Down

0 comments on commit b449607

Please sign in to comment.