Package | Description |
---|---|
org.kepler.job |
Modifier and Type | Method and Description |
---|---|
static Job |
JobFactory.get(java.lang.String jobID)
Return an existing job.
|
Job[] |
Job.getDependentJobs()
Get a set of jobs that must successfully complete before this job
can start.
|
Modifier and Type | Method and Description |
---|---|
boolean |
JobSupportCondor.createSubmitFile(java.lang.String filename,
Job job)
Create a submission file for the specific job manager, based on the
information available in Job: - executable name - input files - output
files - arguments for the job
|
boolean |
JobSupportSGE.createSubmitFile(java.lang.String filename,
Job job)
Create a submission file for the specific job manager, based on the
information available in Job: - executable name - input files - output
files - arguments for the job
|
boolean |
JobSupportLoadLeveler.createSubmitFile(java.lang.String filename,
Job job)
Create a submission file for the specific job manager, based on the
information available in Job: - executable name - input files - output
files - arguments for the job
|
boolean |
JobSupportLSF.createSubmitFile(java.lang.String filename,
Job job)
Create a submission file for the specific job manager, based on the
information available in Job: - executable name - input files - output
files - arguments for the job
|
boolean |
JobSupportPBS.createSubmitFile(java.lang.String filename,
Job job)
Create a submission file for the specific job manager, based on the
information available in Job: - executable name - input files - output
files - arguments for the job
|
boolean |
JobSupportFork.createSubmitFile(java.lang.String filename,
Job job)
Create a submission file for the specific job manager, based on the
information available in Job: - executable name - input files - output
files - arguments for the job
|
boolean |
JobSupportMoab.createSubmitFile(java.lang.String filename,
Job job)
Create a submission file for the specific job manager,
based on the information available in Job:
- executable name
- input files
- output files
- arguments for the job
|
boolean |
JobSupportNCCS.createSubmitFile(java.lang.String filename,
Job job)
Create a submission file for the specific job manager, based on the
information available in Job: - executable name - input files - output
files - arguments for the job
|
boolean |
JobSupportSLURM.createSubmitFile(java.lang.String filename,
Job job)
Create a submission file for the specific job manager, based on the
information available in Job: - executable name - input files - output
files - arguments for the job
|
java.lang.String |
JobSupportCondor.getSubmitCmd(java.lang.String submitFile,
java.lang.String options,
Job job)
Submit command for Condor. return: the command for submission
|
java.lang.String |
JobSupportSGE.getSubmitCmd(java.lang.String submitFile,
java.lang.String options,
Job job)
Submit command for SGE return: the command for submission
|
java.lang.String |
JobSupportLoadLeveler.getSubmitCmd(java.lang.String submitFile,
java.lang.String options,
Job job)
Submit command for LoadLeveler return: the command for submission
|
java.lang.String |
JobSupportLSF.getSubmitCmd(java.lang.String submitFile,
java.lang.String options,
Job job)
Submit command for lsf return: the command for submission
|
java.lang.String |
JobSupportPBS.getSubmitCmd(java.lang.String submitFile,
java.lang.String options,
Job job)
Submit command for PBS return: the command for submission
|
java.lang.String |
JobSupportFork.getSubmitCmd(java.lang.String submitFile,
java.lang.String options,
Job job)
Submit command for fork return: the command for submission
|
java.lang.String |
JobSupportMoab.getSubmitCmd(java.lang.String submitFile,
java.lang.String options,
Job job)
Submit command for Moab
return: the command for submission
|
java.lang.String |
JobSupportNCCS.getSubmitCmd(java.lang.String submitFile,
java.lang.String options,
Job job)
Submit command for NCCS return: the command for submission
|
java.lang.String |
JobSupportSLURM.getSubmitCmd(java.lang.String submitFile,
java.lang.String options,
Job job)
Submit command for SLURM return: the command for submission
|
void |
Job.setDependentJobs(Job[] dependentJobs)
Specify a set of jobs that must successfully complete before this
can start.
|
protected java.lang.String |
JobManager.submit(Job job,
boolean overwrite,
java.lang.String options)
Submit a job, called from Job.submit(); boolean overwrite
indicates whether old files that exist on the same directory should be
removed before staging new files.
|