MFCP waits for other pipelines to finish by using the previous log file of one pipeline as virtual input to the next pipeline.
Using the name of the yaml in the log file name instead of each writing each to "queue.out" so that two yamls can run from the same directory without creating cycles in the graph. git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@5318 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
600f73cbd6
commit
3e0a722672
|
|
@ -79,7 +79,7 @@ class MultiFullCallingPipeline extends QScript {
|
|||
var pipelineComplete = new File(yamlFile.getParentFile, yamlName + ".mfcp")
|
||||
|
||||
commandDirectory = yamlFile.getParentFile
|
||||
jobOutputFile = IOUtils.absolute(commandDirectory, "queue.out")
|
||||
jobOutputFile = IOUtils.absolute(commandDirectory, yamlName + ".queue.txt")
|
||||
jarFile = queueJar
|
||||
memoryLimit = Some(1)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue