X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/4d59e4f59204ff6e278ad7f37b55ead3911412e1..79e63a733c48b04d7c9b6bcc6120af72b3f14641:/sdk/cwl/arvados_cwl/arvcontainer.py diff --git a/sdk/cwl/arvados_cwl/arvcontainer.py b/sdk/cwl/arvados_cwl/arvcontainer.py index 9f21b3fed5..9da5fcbdeb 100644 --- a/sdk/cwl/arvados_cwl/arvcontainer.py +++ b/sdk/cwl/arvados_cwl/arvcontainer.py @@ -11,7 +11,7 @@ import arvados.collection from .arvdocker import arv_docker_get_image from . import done -from .runner import Runner +from .runner import Runner, arvados_jobs_image logger = logging.getLogger('arvados.cwl-runner') @@ -42,6 +42,7 @@ class ArvadosContainer(object): "kind": "tmp" } } + scheduling_parameters = {} dirs = set() for f in self.pathmapper.files(): @@ -79,7 +80,7 @@ class ArvadosContainer(object): (docker_req, docker_is_req) = get_feature(self, "DockerRequirement") if not docker_req: - docker_req = {"dockerImageId": "arvados/jobs"} + docker_req = {"dockerImageId": arvados_jobs_image(self.arvrunner)} container_request["container_image"] = arv_docker_get_image(self.arvrunner.api, docker_req, @@ -97,38 +98,40 @@ class ArvadosContainer(object): runtime_req, _ = get_feature(self, "http://arvados.org/cwl#RuntimeConstraints") if runtime_req: - logger.warn("RuntimeConstraints not yet supported by container API") + if "keep_cache" in runtime_req: + runtime_constraints["keep_cache_ram"] = runtime_req["keep_cache"] partition_req, _ = get_feature(self, "http://arvados.org/cwl#PartitionRequirement") if partition_req: - runtime_constraints["partition"] = aslist(partition_req["partition"]) + scheduling_parameters["partitions"] = aslist(partition_req["partition"]) container_request["mounts"] = mounts container_request["runtime_constraints"] = runtime_constraints + container_request["use_existing"] = kwargs.get("enable_reuse", True) + container_request["scheduling_parameters"] = scheduling_parameters try: response = self.arvrunner.api.container_requests().create( body=container_request ).execute(num_retries=self.arvrunner.num_retries) - self.arvrunner.processes[response["container_uuid"]] = self + self.arvrunner.processes[response["uuid"]] = self - container = self.arvrunner.api.containers().get( - uuid=response["container_uuid"] - ).execute(num_retries=self.arvrunner.num_retries) - - logger.info("Container request %s (%s) state is %s with container %s %s", self.name, response["uuid"], response["state"], container["uuid"], container["state"]) + logger.info("Container request %s (%s) state is %s", self.name, response["uuid"], response["state"]) - if container["state"] in ("Complete", "Cancelled"): - self.done(container) + if response["state"] == "Final": + self.done(response) except Exception as e: logger.error("Got error %s" % str(e)) self.output_callback({}, "permanentFail") def done(self, record): try: - if record["state"] == "Complete": - rcode = record["exit_code"] + container = self.arvrunner.api.containers().get( + uuid=record["container_uuid"] + ).execute(num_retries=self.arvrunner.num_retries) + if container["state"] == "Complete": + rcode = container["exit_code"] if self.successCodes and rcode in self.successCodes: processStatus = "success" elif self.temporaryFailCodes and rcode in self.temporaryFailCodes: @@ -142,17 +145,14 @@ class ArvadosContainer(object): else: processStatus = "permanentFail" - try: - outputs = {} - if record["output"]: - outputs = done.done(self, record, "/tmp", self.outdir, "/keep") - except WorkflowException as e: - logger.error("Error while collecting container outputs:\n%s", e, exc_info=(e if self.arvrunner.debug else False)) - processStatus = "permanentFail" - except Exception as e: - logger.exception("Got unknown exception while collecting job outputs:") - processStatus = "permanentFail" + outputs = {} + if container["output"]: + try: + outputs = done.done_outputs(self, container, "/tmp", self.outdir, "/keep") + except Exception as e: + logger.error("Got error %s" % str(e)) + self.output_callback({}, "permanentFail") self.output_callback(outputs, processStatus) finally: del self.arvrunner.processes[record["uuid"]] @@ -183,14 +183,18 @@ class RunnerContainer(Runner): workflowcollection = workflowcollection[5:workflowcollection.index('/')] jobpath = "/var/lib/cwl/job/cwl.input.json" - container_image = arv_docker_get_image(self.arvrunner.api, - {"dockerImageId": "arvados/jobs"}, - pull_image, - self.arvrunner.project_uuid) - command = ["arvados-cwl-runner", "--local", "--api=containers"] if self.output_name: command.append("--output-name=" + self.output_name) + + if self.output_tags: + command.append("--output-tags=" + self.output_tags) + + if self.enable_reuse: + command.append("--enable-reuse") + else: + command.append("--disable-reuse") + command.extend([workflowpath, jobpath]) return { @@ -201,7 +205,7 @@ class RunnerContainer(Runner): "cwd": "/var/spool/cwl", "priority": 1, "state": "Committed", - "container_image": container_image, + "container_image": arvados_jobs_image(self.arvrunner), "mounts": { "/var/lib/cwl/workflow": { "kind": "collection", @@ -237,9 +241,9 @@ class RunnerContainer(Runner): ).execute(num_retries=self.arvrunner.num_retries) self.uuid = response["uuid"] - self.arvrunner.processes[response["container_uuid"]] = self + self.arvrunner.processes[response["uuid"]] = self logger.info("Submitted container %s", response["uuid"]) - if response["state"] in ("Complete", "Failed", "Cancelled"): + if response["state"] == "Final": self.done(response)