Changes between Version 34 and Version 35 of RemoteJobs


Ignore:
Timestamp:
Mar 15, 2013, 12:01:17 PM (11 years ago)
Author:
davea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • RemoteJobs

    v34 v35  
    3030   and will be served to clients from that data server.
    3131   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.
    3333   It will be served to clients from BOINC server.
    3434 * '''sandbox''': the file is in the user's [RemoteInputFiles#Per-userfilesandbox sandbox],
     
    5858  * '''command_line''': command-line arguments to the application
    5959  * '''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).
    6563
    6664Result: a 2-element array containing
     
    7573$req->jobs = array();
    7674
    77 $f->mode = "local";
     75$f->mode = "local_staged";
    7876$f->source = "filename.dat";
    7977$job->input_files = array($f);