Hi there,
We are currently trying to set up our server to allow more parallel submissions in preparation for this semester's finals, since we expect a lot of students to submit towards the submission deadline. Currently, I have changed the Jobe config parameters
in application/config/config.php
to be as follows:
$config['jobe_max_users'] = 50;
$config['cputime_upper_limit_secs'] = 30;
Afterwards, I reinstalled the Jobe server with sudo ./install
and tested with the provided testsubmit.py
, increasing NUM_PARALLEL_SUBMISSIONS
to 50.
However, when I run the test and the test reaches the "Checking parallel submissions" phase, some jobs will fail to compile with the following error:
{
'run_id': None,
'outcome': 11,
'cmpinfo': "/var/www/m2/jobe/application/libraries/../../runguard/runguard: illegal user specified: 974\nTry `/var/www/m2/jobe/application/libraries/../../runguard/runguard --help' for more information.\n",
'stdout': '',
'stderr': ''
}
Is this possibly related to the changes in version 1.4.2
, which includes a bug fix for Bug fix: Jobe server overload was being incorrectly reported as a Runguard error ("No user jobe-1")?
.