1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: Apache-2.0
5 # Crunch script integration for running arvados-cwl-runner (importing
6 # arvados_cwl module) inside a crunch job.
8 # This gets the job record, transforms the script parameters into a valid CWL
9 # input object, then executes the CWL runner to run the underlying workflow or
10 # tool. When the workflow completes, record the output object in an output
11 # collection for this runner job.
15 import arvados.collection
25 from arvados.api import OrderedJsonModel
26 from cwltool.process import shortname
27 from cwltool.pathmapper import adjustFileObjs, adjustDirObjs, normalizeFilesDirs
28 from cwltool.load_tool import load_tool
29 from cwltool.errors import WorkflowException
31 from .fsaccess import CollectionFetcher, CollectionFsAccess
33 logger = logging.getLogger('arvados.cwl-runner')
36 # Timestamps are added by crunch-job, so don't print redundant timestamps.
37 arvados.log_handler.setFormatter(logging.Formatter('%(name)s %(levelname)s: %(message)s'))
39 # Print package versions
40 logger.info(arvados_cwl.versionstring())
42 api = arvados.api("v1")
44 arvados_cwl.add_arv_hints()
48 job_order_object = arvados.current_job()['script_parameters']
49 toolpath = "file://%s/%s" % (os.environ['TASK_KEEPMOUNT'], job_order_object.pop("cwl:tool"))
51 pdh_path = re.compile(r'^[0-9a-f]{32}\+\d+(/.+)?$')
61 v["location"] = keeppath(v["location"])
63 for k,v in job_order_object.items():
64 if isinstance(v, basestring) and arvados.util.keep_locator_pattern.match(v):
65 job_order_object[k] = {
67 "location": "keep:%s" % v
70 adjustFileObjs(job_order_object, keeppathObj)
71 adjustDirObjs(job_order_object, keeppathObj)
72 normalizeFilesDirs(job_order_object)
78 if "arv:output_name" in job_order_object:
79 output_name = job_order_object["arv:output_name"]
80 del job_order_object["arv:output_name"]
82 if "arv:output_tags" in job_order_object:
83 output_tags = job_order_object["arv:output_tags"]
84 del job_order_object["arv:output_tags"]
86 if "arv:enable_reuse" in job_order_object:
87 enable_reuse = job_order_object["arv:enable_reuse"]
88 del job_order_object["arv:enable_reuse"]
90 if "arv:on_error" in job_order_object:
91 on_error = job_order_object["arv:on_error"]
92 del job_order_object["arv:on_error"]
94 runner = arvados_cwl.ArvCwlRunner(api_client=arvados.api('v1', model=OrderedJsonModel()),
95 output_name=output_name, output_tags=output_tags)
97 make_fs_access = functools.partial(CollectionFsAccess,
98 collection_cache=runner.collection_cache)
100 t = load_tool(toolpath, runner.arv_make_tool,
101 fetcher_constructor=functools.partial(CollectionFetcher,
102 api_client=runner.api,
103 fs_access=make_fs_access(""),
104 num_retries=runner.num_retries))
106 args = argparse.Namespace()
107 args.project_uuid = arvados.current_job()["owner_uuid"]
108 args.enable_reuse = enable_reuse
109 args.on_error = on_error
113 args.ignore_docker_for_reuse = False
114 args.basedir = os.getcwd()
116 args.cwl_runner_job={"uuid": arvados.current_job()["uuid"], "state": arvados.current_job()["state"]}
117 args.make_fs_access = make_fs_access
118 args.trash_intermediate = False
119 args.intermediate_output_ttl = 0
121 runner.arv_executor(t, job_order_object, **vars(args))
122 except Exception as e:
123 if isinstance(e, WorkflowException):
124 logging.info("Workflow error %s", e)
126 logging.exception("Unhandled exception")
127 if runner and runner.final_output_collection:
128 outputCollection = runner.final_output_collection.portable_data_hash()
130 outputCollection = None
131 api.job_tasks().update(uuid=arvados.current_task()['uuid'],
133 'output': outputCollection,