Changes between Version 35 and Version 36 of JobSubmission


Ignore:
Timestamp:
Jul 25, 2014, 12:51:16 AM (10 years ago)
Author:
davea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • JobSubmission

    v35 v36  
    2323 --priority n:: high values are assigned before low values;
    2424  see --priority_order and --priority_order_create_time options on the [BackendPrograms#feeder feeder]
    25  --stdin:: Read stdin, and create one job per line.
    26    Each line may specify a command line (with --command_line), a job name (with --wu_name) or input files.
    27    This lets you create large batches of jobs efficiently.
     25 --stdin:: Read stdin, and create one job per line (see below).
     26 --broadcast, --target_host, etc.:: [AssignedWork Assign or broadcast] this job.
    2827 
    29 
    3028The following [JobIn job parameters] may be passed in the [JobTemplates#Inputtemplates input template],
    3129or as command-line arguments to create_work;
     
    5957--remote_file URL nbytes MD5
    6058}}}
     59
     60=== Creating multiple jobs ===
     61
     62The '''--stdin''' option lets you create many jobs in a single invocation of the '''create_work''' script,
     63greatly increasing the efficiency of creating large batches of jobs.
     64
     65Descriptions of the jobs are read from standard input.
     66Each line specifies a job, and may include the following options:
     67 --command_line "x":: the command line
     68 --wu_name::: the job name
     69 --broadcast, --target_host, etc.:: [AssignedWork assign or broadcast this job].
     70
     71The remaining items specify input files:
     72either physical filenames, or '''--remote_file''' arguments as described aboe.
    6173
    6274== From a C++ program == #cpp-workgen