Project

General

Profile

Actions

Common Workflow Language integration with Arvados » History » Revision 5

« Previous | Revision 5/7 (diff) | Next »
Peter Amstutz, 08/08/2016 02:59 PM


Common Workflow Language integration with Arvados

The main integration is arvados-cwl-runner. This tool is used both as a client to submit a job to run the workflow (arvados-cwl-runner --submit) and for running the workflow directly (arvados-cwl-runner --local). When the user starts a CWL workflow from workbench, it functions similar to --submit mode.

Because submit mode works by creating a "runner" job whose purpose is to manage execution of the workflow, it requires an arvados/jobs Docker image with an up-to-date arvados-cwl-runner.

When running a workflow:

  1. The user submits a workflow by running arvados-cwl-runner or through workbench
  2. This creates an "workflow job" to run arvados-cwl-runner in the arvados/jobs image with the associated CWL workflow and workflow inputs as job inputs
  3. The runner job is responsible for actually executing the workflow:
    1. Create a job for each workflow step (Job A)
    2. Submit the job to API server
    3. Wait for the job to complete
    4. Get the output collection for the job
    5. Compute the resulting CWL output object for the workflow step.
    6. Iterate over the workflow until all steps have been executed and final workflow output is available
  4. Return the final result of the workflow

Updated by Peter Amstutz over 7 years ago · 5 revisions