Changes between Version 34 and Version 35 of RemoteJobs
- Timestamp:
- Mar 15, 2013, 12:01:17 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
RemoteJobs
v34 v35 30 30 and will be served to clients from that data server. 31 31 It's specified by the URL, the file size, and the file MD5. 32 * '''inline''': the file is included in the job submission request XML message.32 * '''inline''': the file is included in the job submission request XML message. 33 33 It will be served to clients from BOINC server. 34 34 * '''sandbox''': the file is in the user's [RemoteInputFiles#Per-userfilesandbox sandbox], … … 58 58 * '''command_line''': command-line arguments to the application 59 59 * '''input_files''': an array of input file descriptors, each of which contains 60 * '''mode''': "inline", "sandbox", "local", "semilocal", or "remote". 61 * '''source''': the file's URL (semilocal and remote modes), 62 path on this host (inline mode) or name on the BOINC server (local mode). 63 * '''size''': the file's size in bytes (remote mode) 64 * '''md5''': the file's MD5 (remote mode) 60 * '''mode''': "local", "semilocal", or "local_staged". 61 * '''source''': the file's URL (semilocal mode), 62 path on the BOINC server (local mode) or physical name (local_staged mode). 65 63 66 64 Result: a 2-element array containing … … 75 73 $req->jobs = array(); 76 74 77 $f->mode = "local ";75 $f->mode = "local_staged"; 78 76 $f->source = "filename.dat"; 79 77 $job->input_files = array($f);