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)
80 if "arv:output_name" in job_order_object:
81 output_name = job_order_object["arv:output_name"]
82 del job_order_object["arv:output_name"]
84 if "arv:output_tags" in job_order_object:
85 output_tags = job_order_object["arv:output_tags"]
86 del job_order_object["arv:output_tags"]
88 if "arv:enable_reuse" in job_order_object:
89 enable_reuse = job_order_object["arv:enable_reuse"]
90 del job_order_object["arv:enable_reuse"]
92 if "arv:on_error" in job_order_object:
93 on_error = job_order_object["arv:on_error"]
94 del job_order_object["arv:on_error"]
96 if "arv:debug" in job_order_object:
97 debug = job_order_object["arv:debug"]
98 del job_order_object["arv:debug"]
100 runner = arvados_cwl.ArvCwlRunner(api_client=arvados.api('v1', model=OrderedJsonModel()),
101 output_name=output_name, output_tags=output_tags)
103 make_fs_access = functools.partial(CollectionFsAccess,
104 collection_cache=runner.collection_cache)
106 t = load_tool(toolpath, runner.arv_make_tool,
107 fetcher_constructor=functools.partial(CollectionFetcher,
108 api_client=runner.api,
109 fs_access=make_fs_access(""),
110 num_retries=runner.num_retries))
113 logger.setLevel(logging.DEBUG)
114 logging.getLogger('arvados').setLevel(logging.DEBUG)
115 logging.getLogger("cwltool").setLevel(logging.DEBUG)
117 args = argparse.Namespace()
118 args.project_uuid = arvados.current_job()["owner_uuid"]
119 args.enable_reuse = enable_reuse
120 args.on_error = on_error
124 args.ignore_docker_for_reuse = False
125 args.basedir = os.getcwd()
127 args.cwl_runner_job={"uuid": arvados.current_job()["uuid"], "state": arvados.current_job()["state"]}
128 args.make_fs_access = make_fs_access
129 args.trash_intermediate = False
130 args.intermediate_output_ttl = 0
131 args.priority = arvados_cwl.DEFAULT_PRIORITY
133 runner.arv_executor(t, job_order_object, **vars(args))
134 except Exception as e:
135 if isinstance(e, WorkflowException):
136 logging.info("Workflow error %s", e)
138 logging.exception("Unhandled exception")
139 if runner and runner.final_output_collection:
140 outputCollection = runner.final_output_collection.portable_data_hash()
142 outputCollection = None
143 api.job_tasks().update(uuid=arvados.current_task()['uuid'],
145 'output': outputCollection,