1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: Apache-2.0
5 from future import standard_library
6 standard_library.install_aliases()
7 from builtins import str
12 import urllib.request, urllib.parse, urllib.error
19 import arvados_cwl.util
20 import ruamel.yaml as yaml
22 from cwltool.errors import WorkflowException
23 from cwltool.process import UnsupportedRequirement, shortname
24 from cwltool.pathmapper import adjustFileObjs, adjustDirObjs, visit_class
25 from cwltool.utils import aslist
26 from cwltool.job import JobBase
28 import arvados.collection
30 from .arvdocker import arv_docker_get_image
32 from .runner import Runner, arvados_jobs_image, packed_workflow, trim_anonymous_location, remove_redundant_fields
33 from .fsaccess import CollectionFetcher
34 from .pathmapper import NoFollowPathMapper, trim_listing
35 from .perf import Perf
37 logger = logging.getLogger('arvados.cwl-runner')
38 metrics = logging.getLogger('arvados.cwl-runner.metrics')
40 class ArvadosContainer(JobBase):
41 """Submit and manage a Crunch container request for executing a CWL CommandLineTool."""
43 def __init__(self, runner, job_runtime,
44 builder, # type: Builder
45 joborder, # type: Dict[Text, Union[Dict[Text, Any], List, Text]]
46 make_path_mapper, # type: Callable[..., PathMapper]
47 requirements, # type: List[Dict[Text, Text]]
48 hints, # type: List[Dict[Text, Text]]
51 super(ArvadosContainer, self).__init__(builder, joborder, make_path_mapper, requirements, hints, name)
52 self.arvrunner = runner
53 self.job_runtime = job_runtime
57 def update_pipeline_component(self, r):
60 def run(self, runtimeContext):
61 # ArvadosCommandTool subclasses from cwltool.CommandLineTool,
62 # which calls makeJobRunner() to get a new ArvadosContainer
63 # object. The fields that define execution such as
64 # command_line, environment, etc are set on the
65 # ArvadosContainer object by CommandLineTool.job() before
68 runtimeContext = self.job_runtime
71 "command": self.command_line,
73 "output_path": self.outdir,
75 "priority": runtimeContext.priority,
79 runtime_constraints = {}
81 if runtimeContext.project_uuid:
82 container_request["owner_uuid"] = runtimeContext.project_uuid
84 if self.arvrunner.secret_store.has_secret(self.command_line):
85 raise WorkflowException("Secret material leaked on command line, only file literals may contain secrets")
87 if self.arvrunner.secret_store.has_secret(self.environment):
88 raise WorkflowException("Secret material leaked in environment, only file literals may contain secrets")
90 resources = self.builder.resources
91 if resources is not None:
92 runtime_constraints["vcpus"] = math.ceil(resources.get("cores", 1))
93 runtime_constraints["ram"] = math.ceil(resources.get("ram") * 2**20)
98 "capacity": math.ceil(resources.get("outdirSize", 0) * 2**20)
102 "capacity": math.ceil(resources.get("tmpdirSize", 0) * 2**20)
106 scheduling_parameters = {}
108 rf = [self.pathmapper.mapper(f) for f in self.pathmapper.referenced_files]
109 rf.sort(key=lambda k: k.resolved)
111 for resolved, target, tp, stg in rf:
114 if prevdir and target.startswith(prevdir):
116 if tp == "Directory":
119 targetdir = os.path.dirname(target)
120 sp = resolved.split("/", 1)
121 pdh = sp[0][5:] # remove "keep:"
122 mounts[targetdir] = {
123 "kind": "collection",
124 "portable_data_hash": pdh
127 if tp == "Directory":
130 path = os.path.dirname(sp[1])
131 if path and path != "/":
132 mounts[targetdir]["path"] = path
133 prevdir = targetdir + "/"
135 with Perf(metrics, "generatefiles %s" % self.name):
136 if self.generatefiles["listing"]:
137 vwd = arvados.collection.Collection(api_client=self.arvrunner.api,
138 keep_client=self.arvrunner.keep_client,
139 num_retries=self.arvrunner.num_retries)
140 generatemapper = NoFollowPathMapper(self.generatefiles["listing"], "", "",
143 sorteditems = sorted(list(generatemapper.items()), key=lambda n: n[1].target)
145 logger.debug("generatemapper is %s", sorteditems)
147 with Perf(metrics, "createfiles %s" % self.name):
148 for f, p in sorteditems:
151 elif p.type in ("File", "Directory", "WritableFile", "WritableDirectory"):
152 if p.resolved.startswith("_:"):
155 source, path = self.arvrunner.fs_access.get_collection(p.resolved)
156 vwd.copy(path, p.target, source_collection=source)
157 elif p.type == "CreateFile":
158 if self.arvrunner.secret_store.has_secret(p.resolved):
159 secret_mounts["%s/%s" % (self.outdir, p.target)] = {
161 "content": self.arvrunner.secret_store.retrieve(p.resolved)
164 with vwd.open(p.target, "w") as n:
165 n.write(p.resolved.encode("utf-8"))
167 def keepemptydirs(p):
168 if isinstance(p, arvados.collection.RichCollectionBase):
170 p.open(".keep", "w").close()
177 if not runtimeContext.current_container:
178 runtimeContext.current_container = arvados_cwl.util.get_current_container(self.arvrunner.api, self.arvrunner.num_retries, logger)
179 info = arvados_cwl.util.get_intermediate_collection_info(self.name, runtimeContext.current_container, runtimeContext.intermediate_output_ttl)
180 vwd.save_new(name=info["name"],
181 owner_uuid=runtimeContext.project_uuid,
182 ensure_unique_name=True,
183 trash_at=info["trash_at"],
184 properties=info["properties"])
187 for f, p in sorteditems:
188 if (not p.target or self.arvrunner.secret_store.has_secret(p.resolved) or
189 (prev is not None and p.target.startswith(prev))):
191 mountpoint = "%s/%s" % (self.outdir, p.target)
192 mounts[mountpoint] = {"kind": "collection",
193 "portable_data_hash": vwd.portable_data_hash(),
195 if p.type.startswith("Writable"):
196 mounts[mountpoint]["writable"] = True
197 prev = p.target + "/"
199 container_request["environment"] = {"TMPDIR": self.tmpdir, "HOME": self.outdir}
201 container_request["environment"].update(self.environment)
204 sp = self.stdin[6:].split("/", 1)
205 mounts["stdin"] = {"kind": "collection",
206 "portable_data_hash": sp[0],
210 mounts["stderr"] = {"kind": "file",
211 "path": "%s/%s" % (self.outdir, self.stderr)}
214 mounts["stdout"] = {"kind": "file",
215 "path": "%s/%s" % (self.outdir, self.stdout)}
217 (docker_req, docker_is_req) = self.get_requirement("DockerRequirement")
219 docker_req = {"dockerImageId": "arvados/jobs"}
221 container_request["container_image"] = arv_docker_get_image(self.arvrunner.api,
223 runtimeContext.pull_image,
224 runtimeContext.project_uuid)
226 api_req, _ = self.get_requirement("http://arvados.org/cwl#APIRequirement")
228 runtime_constraints["API"] = True
230 runtime_req, _ = self.get_requirement("http://arvados.org/cwl#RuntimeConstraints")
232 if "keep_cache" in runtime_req:
233 runtime_constraints["keep_cache_ram"] = math.ceil(runtime_req["keep_cache"] * 2**20)
234 if "outputDirType" in runtime_req:
235 if runtime_req["outputDirType"] == "local_output_dir":
236 # Currently the default behavior.
238 elif runtime_req["outputDirType"] == "keep_output_dir":
239 mounts[self.outdir]= {
240 "kind": "collection",
244 partition_req, _ = self.get_requirement("http://arvados.org/cwl#PartitionRequirement")
246 scheduling_parameters["partitions"] = aslist(partition_req["partition"])
248 intermediate_output_req, _ = self.get_requirement("http://arvados.org/cwl#IntermediateOutput")
249 if intermediate_output_req:
250 self.output_ttl = intermediate_output_req["outputTTL"]
252 self.output_ttl = self.arvrunner.intermediate_output_ttl
254 if self.output_ttl < 0:
255 raise WorkflowException("Invalid value %d for output_ttl, cannot be less than zero" % container_request["output_ttl"])
257 if self.timelimit is not None:
258 scheduling_parameters["max_run_time"] = self.timelimit
260 extra_submit_params = {}
261 if runtimeContext.submit_runner_cluster:
262 extra_submit_params["cluster_id"] = runtimeContext.submit_runner_cluster
264 container_request["output_name"] = "Output for step %s" % (self.name)
265 container_request["output_ttl"] = self.output_ttl
266 container_request["mounts"] = mounts
267 container_request["secret_mounts"] = secret_mounts
268 container_request["runtime_constraints"] = runtime_constraints
269 container_request["scheduling_parameters"] = scheduling_parameters
271 enable_reuse = runtimeContext.enable_reuse
273 reuse_req, _ = self.get_requirement("http://arvados.org/cwl#ReuseRequirement")
275 enable_reuse = reuse_req["enableReuse"]
276 container_request["use_existing"] = enable_reuse
278 if runtimeContext.runnerjob.startswith("arvwf:"):
279 wfuuid = runtimeContext.runnerjob[6:runtimeContext.runnerjob.index("#")]
280 wfrecord = self.arvrunner.api.workflows().get(uuid=wfuuid).execute(num_retries=self.arvrunner.num_retries)
281 if container_request["name"] == "main":
282 container_request["name"] = wfrecord["name"]
283 container_request["properties"]["template_uuid"] = wfuuid
285 self.output_callback = self.arvrunner.get_wrapped_callback(self.output_callback)
288 if runtimeContext.submit_request_uuid:
289 response = self.arvrunner.api.container_requests().update(
290 uuid=runtimeContext.submit_request_uuid,
291 body=container_request,
292 **extra_submit_params
293 ).execute(num_retries=self.arvrunner.num_retries)
295 response = self.arvrunner.api.container_requests().create(
296 body=container_request,
297 **extra_submit_params
298 ).execute(num_retries=self.arvrunner.num_retries)
300 self.uuid = response["uuid"]
301 self.arvrunner.process_submitted(self)
303 if response["state"] == "Final":
304 logger.info("%s reused container %s", self.arvrunner.label(self), response["container_uuid"])
306 logger.info("%s %s state is %s", self.arvrunner.label(self), response["uuid"], response["state"])
307 except Exception as e:
308 logger.error("%s got error %s" % (self.arvrunner.label(self), str(e)))
309 self.output_callback({}, "permanentFail")
311 def done(self, record):
314 container = self.arvrunner.api.containers().get(
315 uuid=record["container_uuid"]
316 ).execute(num_retries=self.arvrunner.num_retries)
317 if container["state"] == "Complete":
318 rcode = container["exit_code"]
319 if self.successCodes and rcode in self.successCodes:
320 processStatus = "success"
321 elif self.temporaryFailCodes and rcode in self.temporaryFailCodes:
322 processStatus = "temporaryFail"
323 elif self.permanentFailCodes and rcode in self.permanentFailCodes:
324 processStatus = "permanentFail"
326 processStatus = "success"
328 processStatus = "permanentFail"
330 processStatus = "permanentFail"
332 if processStatus == "permanentFail":
333 logc = arvados.collection.CollectionReader(container["log"],
334 api_client=self.arvrunner.api,
335 keep_client=self.arvrunner.keep_client,
336 num_retries=self.arvrunner.num_retries)
337 label = self.arvrunner.label(self)
340 "%s (%s) error log:" % (label, record["uuid"]), maxlen=40)
342 if record["output_uuid"]:
343 if self.arvrunner.trash_intermediate or self.arvrunner.intermediate_output_ttl:
344 # Compute the trash time to avoid requesting the collection record.
345 trash_at = ciso8601.parse_datetime_unaware(record["modified_at"]) + datetime.timedelta(0, self.arvrunner.intermediate_output_ttl)
346 aftertime = " at %s" % trash_at.strftime("%Y-%m-%d %H:%M:%S UTC") if self.arvrunner.intermediate_output_ttl else ""
347 orpart = ", or" if self.arvrunner.trash_intermediate and self.arvrunner.intermediate_output_ttl else ""
348 oncomplete = " upon successful completion of the workflow" if self.arvrunner.trash_intermediate else ""
349 logger.info("%s Intermediate output %s (%s) will be trashed%s%s%s." % (
350 self.arvrunner.label(self), record["output_uuid"], container["output"], aftertime, orpart, oncomplete))
351 self.arvrunner.add_intermediate_output(record["output_uuid"])
353 if container["output"]:
354 outputs = done.done_outputs(self, container, "/tmp", self.outdir, "/keep")
355 except WorkflowException as e:
356 logger.error("%s unable to collect output from %s:\n%s",
357 self.arvrunner.label(self), container["output"], e, exc_info=(e if self.arvrunner.debug else False))
358 processStatus = "permanentFail"
359 except Exception as e:
360 logger.exception("%s while getting output object: %s", self.arvrunner.label(self), e)
361 processStatus = "permanentFail"
363 self.output_callback(outputs, processStatus)
366 class RunnerContainer(Runner):
367 """Submit and manage a container that runs arvados-cwl-runner."""
369 def arvados_job_spec(self, runtimeContext):
370 """Create an Arvados container request for this workflow.
372 The returned dict can be used to create a container passed as
373 the +body+ argument to container_requests().create().
376 adjustDirObjs(self.job_order, trim_listing)
377 visit_class(self.job_order, ("File", "Directory"), trim_anonymous_location)
378 visit_class(self.job_order, ("File", "Directory"), remove_redundant_fields)
381 for param in sorted(self.job_order.keys()):
382 if self.secret_store.has_secret(self.job_order[param]):
383 mnt = "/secrets/s%d" % len(secret_mounts)
384 secret_mounts[mnt] = {
386 "content": self.secret_store.retrieve(self.job_order[param])
388 self.job_order[param] = {"$include": mnt}
392 "output_path": "/var/spool/cwl",
393 "cwd": "/var/spool/cwl",
394 "priority": self.priority,
395 "state": "Committed",
396 "container_image": arvados_jobs_image(self.arvrunner, self.jobs_image),
398 "/var/lib/cwl/cwl.input.json": {
400 "content": self.job_order
404 "path": "/var/spool/cwl/cwl.output.json"
407 "kind": "collection",
411 "secret_mounts": secret_mounts,
412 "runtime_constraints": {
413 "vcpus": math.ceil(self.submit_runner_cores),
414 "ram": 1024*1024 * (math.ceil(self.submit_runner_ram) + math.ceil(self.collection_cache_size)),
417 "use_existing": self.enable_reuse,
421 if self.embedded_tool.tool.get("id", "").startswith("keep:"):
422 sp = self.embedded_tool.tool["id"].split('/')
423 workflowcollection = sp[0][5:]
424 workflowname = "/".join(sp[1:])
425 workflowpath = "/var/lib/cwl/workflow/%s" % workflowname
426 container_req["mounts"]["/var/lib/cwl/workflow"] = {
427 "kind": "collection",
428 "portable_data_hash": "%s" % workflowcollection
431 packed = packed_workflow(self.arvrunner, self.embedded_tool, self.merged_map)
432 workflowpath = "/var/lib/cwl/workflow.json#main"
433 container_req["mounts"]["/var/lib/cwl/workflow.json"] = {
437 if self.embedded_tool.tool.get("id", "").startswith("arvwf:"):
438 container_req["properties"]["template_uuid"] = self.embedded_tool.tool["id"][6:33]
441 # --local means execute the workflow instead of submitting a container request
442 # --api=containers means use the containers API
443 # --no-log-timestamps means don't add timestamps (the logging infrastructure does this)
444 # --disable-validate because we already validated so don't need to do it again
445 # --eval-timeout is the timeout for javascript invocation
446 # --parallel-task-count is the number of threads to use for job submission
447 # --enable/disable-reuse sets desired job reuse
448 # --collection-cache-size sets aside memory to store collections
449 command = ["arvados-cwl-runner",
452 "--no-log-timestamps",
453 "--disable-validate",
454 "--eval-timeout=%s" % self.arvrunner.eval_timeout,
455 "--thread-count=%s" % self.arvrunner.thread_count,
456 "--enable-reuse" if self.enable_reuse else "--disable-reuse",
457 "--collection-cache-size=%s" % self.collection_cache_size]
460 command.append("--output-name=" + self.output_name)
461 container_req["output_name"] = self.output_name
464 command.append("--output-tags=" + self.output_tags)
466 if runtimeContext.debug:
467 command.append("--debug")
469 if runtimeContext.storage_classes != "default":
470 command.append("--storage-classes=" + runtimeContext.storage_classes)
473 command.append("--on-error=" + self.on_error)
475 if self.intermediate_output_ttl:
476 command.append("--intermediate-output-ttl=%d" % self.intermediate_output_ttl)
478 if self.arvrunner.trash_intermediate:
479 command.append("--trash-intermediate")
481 if self.arvrunner.project_uuid:
482 command.append("--project-uuid="+self.arvrunner.project_uuid)
484 command.extend([workflowpath, "/var/lib/cwl/cwl.input.json"])
486 container_req["command"] = command
491 def run(self, runtimeContext):
492 runtimeContext.keepprefix = "keep:"
493 job_spec = self.arvados_job_spec(runtimeContext)
494 if self.arvrunner.project_uuid:
495 job_spec["owner_uuid"] = self.arvrunner.project_uuid
497 extra_submit_params = {}
498 if runtimeContext.submit_runner_cluster:
499 extra_submit_params["cluster_id"] = runtimeContext.submit_runner_cluster
501 if runtimeContext.submit_request_uuid:
502 response = self.arvrunner.api.container_requests().update(
503 uuid=runtimeContext.submit_request_uuid,
505 **extra_submit_params
506 ).execute(num_retries=self.arvrunner.num_retries)
508 response = self.arvrunner.api.container_requests().create(
510 **extra_submit_params
511 ).execute(num_retries=self.arvrunner.num_retries)
513 self.uuid = response["uuid"]
514 self.arvrunner.process_submitted(self)
516 logger.info("%s submitted container_request %s", self.arvrunner.label(self), response["uuid"])
518 def done(self, record):
520 container = self.arvrunner.api.containers().get(
521 uuid=record["container_uuid"]
522 ).execute(num_retries=self.arvrunner.num_retries)
523 except Exception as e:
524 logger.exception("%s while getting runner container: %s", self.arvrunner.label(self), e)
525 self.arvrunner.output_callback({}, "permanentFail")
527 super(RunnerContainer, self).done(container)