Changes between Version 43 and Version 44 of RemoteJobs
- Timestamp:
- Oct 15, 2014, 11:31:05 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
RemoteJobs
v43 v44 11 11 * There can be no dependencies between jobs. 12 12 13 At the bottom level, the interface uses XML over HTTP. 14 At a higher level, BOINC provides client-side bindings in PHP and C++. 13 At the bottom level, the interface consists of Web RPCs. 14 BOINC provides client-side bindings in PHP and C++. 15 These bindings differ slightly; they expose different details of the Web RPCs. 15 16 16 17 As jobs are completed, their output files are available to the submitting user via HTTP. … … 33 34 * '''app_name''': the name of the application for which jobs are being submitted 34 35 * '''batch_name''': a symbolic name for the batch. Need not be unique. 36 * '''workunit_template_file''': an optional [JobTemplates input template file name]. 37 * '''result_template_file''': an optional [JobTemplates output template file name]. 35 38 * '''jobs''': an array of job descriptors, each of which contains 36 39 * '''rsc_fpops_est''': an estimate of the FLOPs used by the job … … 227 230 === estimate_batch() === 228 231 229 Get an estimate of the time to completion of a (potential) batch.232 Get an estimate of the makespan of a (potential) batch. 230 233 231 234 {{{ … … 444 447 The inputs and outputs of each function are XML documents. 445 448 The format of the request and reply XML documents 446 can be inferred from inc/submit.inc anduser/submit_rpc_handler.php.449 can be inferred from user/submit_rpc_handler.php. 447 450 448 451 == Example web interface ==