Changes between Version 35 and Version 36 of JobSubmission
- Timestamp:
- Jul 25, 2014, 12:51:16 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
JobSubmission
v35 v36 23 23 --priority n:: high values are assigned before low values; 24 24 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. 28 27 29 30 28 The following [JobIn job parameters] may be passed in the [JobTemplates#Inputtemplates input template], 31 29 or as command-line arguments to create_work; … … 59 57 --remote_file URL nbytes MD5 60 58 }}} 59 60 === Creating multiple jobs === 61 62 The '''--stdin''' option lets you create many jobs in a single invocation of the '''create_work''' script, 63 greatly increasing the efficiency of creating large batches of jobs. 64 65 Descriptions of the jobs are read from standard input. 66 Each 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 71 The remaining items specify input files: 72 either physical filenames, or '''--remote_file''' arguments as described aboe. 61 73 62 74 == From a C++ program == #cpp-workgen