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
30 from arvados_cwl.context import ArvRuntimeContext
32 from .fsaccess import CollectionFetcher, CollectionFsAccess
34 logger = logging.getLogger('arvados.cwl-runner')
37 # Timestamps are added by crunch-job, so don't print redundant timestamps.
38 arvados.log_handler.setFormatter(logging.Formatter('%(name)s %(levelname)s: %(message)s'))
40 # Print package versions
41 logger.info(arvados_cwl.versionstring())
43 api = arvados.api("v1")
45 arvados_cwl.add_arv_hints()
49 job_order_object = arvados.current_job()['script_parameters']
50 toolpath = "file://%s/%s" % (os.environ['TASK_KEEPMOUNT'], job_order_object.pop("cwl:tool"))
52 pdh_path = re.compile(r'^[0-9a-f]{32}\+\d+(/.+)?$')
62 v["location"] = keeppath(v["location"])
64 for k,v in job_order_object.items():
65 if isinstance(v, basestring) and arvados.util.keep_locator_pattern.match(v):
66 job_order_object[k] = {
68 "location": "keep:%s" % v
71 adjustFileObjs(job_order_object, keeppathObj)
72 adjustDirObjs(job_order_object, keeppathObj)
73 normalizeFilesDirs(job_order_object)
81 if "arv:output_name" in job_order_object:
82 output_name = job_order_object["arv:output_name"]
83 del job_order_object["arv:output_name"]
85 if "arv:output_tags" in job_order_object:
86 output_tags = job_order_object["arv:output_tags"]
87 del job_order_object["arv:output_tags"]
89 if "arv:enable_reuse" in job_order_object:
90 enable_reuse = job_order_object["arv:enable_reuse"]
91 del job_order_object["arv:enable_reuse"]
93 if "arv:on_error" in job_order_object:
94 on_error = job_order_object["arv:on_error"]
95 del job_order_object["arv:on_error"]
97 if "arv:debug" in job_order_object:
98 debug = job_order_object["arv:debug"]
99 del job_order_object["arv:debug"]
101 arvargs = argparse.Namespace()
102 arvargs.work_api = "jobs"
103 arvargs.output_name = output_name
104 arvargs.output_tags = output_tags
105 arvargs.thread_count = 1
107 runner = arvados_cwl.ArvCwlRunner(api_client=arvados.safeapi.ThreadSafeApiCache(
108 api_params={"model": OrderedJsonModel()}, keep_params={"num_retries": 4}),
111 make_fs_access = functools.partial(CollectionFsAccess,
112 collection_cache=runner.collection_cache)
114 t = load_tool(toolpath, runner.loadingContext)
117 logger.setLevel(logging.DEBUG)
118 logging.getLogger('arvados').setLevel(logging.DEBUG)
119 logging.getLogger("cwltool").setLevel(logging.DEBUG)
121 args = ArvRuntimeContext(vars(arvargs))
122 args.project_uuid = arvados.current_job()["owner_uuid"]
123 args.enable_reuse = enable_reuse
124 args.on_error = on_error
128 args.ignore_docker_for_reuse = False
129 args.basedir = os.getcwd()
131 args.cwl_runner_job={"uuid": arvados.current_job()["uuid"], "state": arvados.current_job()["state"]}
132 args.make_fs_access = make_fs_access
133 args.trash_intermediate = False
134 args.intermediate_output_ttl = 0
135 args.priority = arvados_cwl.DEFAULT_PRIORITY
136 args.do_validate = True
137 args.disable_js_validation = False
138 args.tmp_outdir_prefix = "tmp"
140 runner.arv_executor(t, job_order_object, args, logger=logger)
141 except Exception as e:
142 if isinstance(e, WorkflowException):
143 logging.info("Workflow error %s", e)
145 logging.exception("Unhandled exception")
146 if runner and runner.final_output_collection:
147 outputCollection = runner.final_output_collection.portable_data_hash()
149 outputCollection = None
150 api.job_tasks().update(uuid=arvados.current_task()['uuid'],
152 'output': outputCollection,