dbbd83da2efd7d8f609dcdbfd90d10f414e6c1ac
[arvados.git] / sdk / cwl / arvados_cwl / arvcontainer.py
1 import logging
2 import json
3 import os
4
5 import ruamel.yaml as yaml
6
7 from cwltool.errors import WorkflowException
8 from cwltool.process import get_feature, UnsupportedRequirement, shortname
9 from cwltool.pathmapper import adjustFiles
10 from cwltool.utils import aslist
11
12 import arvados.collection
13
14 from .arvdocker import arv_docker_get_image
15 from . import done
16 from .runner import Runner, arvados_jobs_image
17 from .fsaccess import CollectionFetcher
18
19 logger = logging.getLogger('arvados.cwl-runner')
20
21 class ArvadosContainer(object):
22     """Submit and manage a Crunch container request for executing a CWL CommandLineTool."""
23
24     def __init__(self, runner):
25         self.arvrunner = runner
26         self.running = False
27         self.uuid = None
28
29     def update_pipeline_component(self, r):
30         pass
31
32     def run(self, dry_run=False, pull_image=True, **kwargs):
33         container_request = {
34             "command": self.command_line,
35             "owner_uuid": self.arvrunner.project_uuid,
36             "name": self.name,
37             "output_path": self.outdir,
38             "cwd": self.outdir,
39             "priority": 1,
40             "state": "Committed",
41             "properties": {}
42         }
43         runtime_constraints = {}
44         mounts = {
45             self.outdir: {
46                 "kind": "tmp"
47             }
48         }
49         scheduling_parameters = {}
50
51         dirs = set()
52         for f in self.pathmapper.files():
53             _, p, tp = self.pathmapper.mapper(f)
54             if tp == "Directory" and '/' not in p[6:]:
55                 mounts[p] = {
56                     "kind": "collection",
57                     "portable_data_hash": p[6:]
58                 }
59                 dirs.add(p[6:])
60         for f in self.pathmapper.files():
61             _, p, tp = self.pathmapper.mapper(f)
62             if p[6:].split("/")[0] not in dirs:
63                 mounts[p] = {
64                     "kind": "collection",
65                     "portable_data_hash": p[6:]
66                 }
67
68         if self.generatefiles["listing"]:
69             raise UnsupportedRequirement("InitialWorkDirRequirement not supported with --api=containers")
70
71         container_request["environment"] = {"TMPDIR": self.tmpdir, "HOME": self.outdir}
72         if self.environment:
73             container_request["environment"].update(self.environment)
74
75         if self.stdin:
76             raise UnsupportedRequirement("Stdin redirection currently not suppported")
77
78         if self.stderr:
79             raise UnsupportedRequirement("Stderr redirection currently not suppported")
80
81         if self.stdout:
82             mounts["stdout"] = {"kind": "file",
83                                 "path": "%s/%s" % (self.outdir, self.stdout)}
84
85         (docker_req, docker_is_req) = get_feature(self, "DockerRequirement")
86         if not docker_req:
87             docker_req = {"dockerImageId": arvados_jobs_image(self.arvrunner)}
88
89         container_request["container_image"] = arv_docker_get_image(self.arvrunner.api,
90                                                                      docker_req,
91                                                                      pull_image,
92                                                                      self.arvrunner.project_uuid)
93
94         resources = self.builder.resources
95         if resources is not None:
96             runtime_constraints["vcpus"] = resources.get("cores", 1)
97             runtime_constraints["ram"] = resources.get("ram") * 2**20
98
99         api_req, _ = get_feature(self, "http://arvados.org/cwl#APIRequirement")
100         if api_req:
101             runtime_constraints["API"] = True
102
103         runtime_req, _ = get_feature(self, "http://arvados.org/cwl#RuntimeConstraints")
104         if runtime_req:
105             if "keep_cache" in runtime_req:
106                 runtime_constraints["keep_cache_ram"] = runtime_req["keep_cache"]
107
108         partition_req, _ = get_feature(self, "http://arvados.org/cwl#PartitionRequirement")
109         if partition_req:
110             scheduling_parameters["partitions"] = aslist(partition_req["partition"])
111
112         container_request["mounts"] = mounts
113         container_request["runtime_constraints"] = runtime_constraints
114         container_request["use_existing"] = kwargs.get("enable_reuse", True)
115         container_request["scheduling_parameters"] = scheduling_parameters
116
117         if kwargs.get("runnerjob", "").startswith("arvwf:"):
118             wfuuid = kwargs["runnerjob"][6:kwargs["runnerjob"].index("#")]
119             wfrecord = self.arvrunner.api.workflows().get(uuid=wfuuid).execute(num_retries=self.arvrunner.num_retries)
120             if container_request["name"] == "main":
121                 container_request["name"] = wfrecord["name"]
122             container_request["properties"]["template_uuid"] = wfuuid
123
124         try:
125             response = self.arvrunner.api.container_requests().create(
126                 body=container_request
127             ).execute(num_retries=self.arvrunner.num_retries)
128
129             self.uuid = response["uuid"]
130             self.arvrunner.processes[self.uuid] = self
131
132             logger.info("Container request %s (%s) state is %s", self.name, response["uuid"], response["state"])
133
134             if response["state"] == "Final":
135                 self.done(response)
136         except Exception as e:
137             logger.error("Got error %s" % str(e))
138             self.output_callback({}, "permanentFail")
139
140     def done(self, record):
141         try:
142             container = self.arvrunner.api.containers().get(
143                 uuid=record["container_uuid"]
144             ).execute(num_retries=self.arvrunner.num_retries)
145             if container["state"] == "Complete":
146                 rcode = container["exit_code"]
147                 if self.successCodes and rcode in self.successCodes:
148                     processStatus = "success"
149                 elif self.temporaryFailCodes and rcode in self.temporaryFailCodes:
150                     processStatus = "temporaryFail"
151                 elif self.permanentFailCodes and rcode in self.permanentFailCodes:
152                     processStatus = "permanentFail"
153                 elif rcode == 0:
154                     processStatus = "success"
155                 else:
156                     processStatus = "permanentFail"
157             else:
158                 processStatus = "permanentFail"
159
160             outputs = {}
161
162             if container["output"]:
163                 try:
164                     outputs = done.done_outputs(self, container, "/tmp", self.outdir, "/keep")
165                 except Exception as e:
166                     logger.error("Got error %s" % str(e))
167                     self.output_callback({}, "permanentFail")
168             self.output_callback(outputs, processStatus)
169         finally:
170             del self.arvrunner.processes[record["uuid"]]
171
172
173 class RunnerContainer(Runner):
174     """Submit and manage a container that runs arvados-cwl-runner."""
175
176     def arvados_job_spec(self, dry_run=False, pull_image=True, **kwargs):
177         """Create an Arvados container request for this workflow.
178
179         The returned dict can be used to create a container passed as
180         the +body+ argument to container_requests().create().
181         """
182
183         workflowmapper = super(RunnerContainer, self).arvados_job_spec(dry_run=dry_run, pull_image=pull_image, **kwargs)
184
185         container_req = {
186             "owner_uuid": self.arvrunner.project_uuid,
187             "name": self.name,
188             "output_path": "/var/spool/cwl",
189             "cwd": "/var/spool/cwl",
190             "priority": 1,
191             "state": "Committed",
192             "container_image": arvados_jobs_image(self.arvrunner),
193             "mounts": {
194                 "/var/lib/cwl/cwl.input.json": {
195                     "kind": "json",
196                     "content": self.job_order
197                 },
198                 "stdout": {
199                     "kind": "file",
200                     "path": "/var/spool/cwl/cwl.output.json"
201                 },
202                 "/var/spool/cwl": {
203                     "kind": "collection",
204                     "writable": True
205                 }
206             },
207             "runtime_constraints": {
208                 "vcpus": 1,
209                 "ram": 1024*1024 * self.submit_runner_ram,
210                 "API": True
211             },
212             "properties": {}
213         }
214
215         workflowcollection = workflowmapper.mapper(self.tool.tool["id"])[1]
216         if workflowcollection.startswith("keep:"):
217             workflowcollection = workflowcollection[5:workflowcollection.index('/')]
218             workflowname = os.path.basename(self.tool.tool["id"])
219             workflowpath = "/var/lib/cwl/workflow/%s" % workflowname
220             container_req["mounts"]["/var/lib/cwl/workflow"] = {
221                 "kind": "collection",
222                 "portable_data_hash": "%s" % workflowcollection
223                 }
224         elif workflowcollection.startswith("arvwf:"):
225             workflowpath = "/var/lib/cwl/workflow.json#main"
226             wfuuid = workflowcollection[6:workflowcollection.index("#")]
227             wfrecord = self.arvrunner.api.workflows().get(uuid=wfuuid).execute(num_retries=self.arvrunner.num_retries)
228             wfobj = yaml.safe_load(wfrecord["definition"])
229             if container_req["name"].startswith("arvwf:"):
230                 container_req["name"] = wfrecord["name"]
231             container_req["mounts"]["/var/lib/cwl/workflow.json"] = {
232                 "kind": "json",
233                 "json": wfobj
234             }
235             container_req["properties"]["template_uuid"] = wfuuid
236
237         command = ["arvados-cwl-runner", "--local", "--api=containers"]
238         if self.output_name:
239             command.append("--output-name=" + self.output_name)
240
241         if self.output_tags:
242             command.append("--output-tags=" + self.output_tags)
243
244         if self.enable_reuse:
245             command.append("--enable-reuse")
246         else:
247             command.append("--disable-reuse")
248
249         command.extend([workflowpath, "/var/lib/cwl/cwl.input.json"])
250
251         container_req["command"] = command
252
253         return container_req
254
255
256     def run(self, *args, **kwargs):
257         kwargs["keepprefix"] = "keep:"
258         job_spec = self.arvados_job_spec(*args, **kwargs)
259         job_spec.setdefault("owner_uuid", self.arvrunner.project_uuid)
260
261         response = self.arvrunner.api.container_requests().create(
262             body=job_spec
263         ).execute(num_retries=self.arvrunner.num_retries)
264
265         self.uuid = response["uuid"]
266         self.arvrunner.processes[self.uuid] = self
267
268         logger.info("Submitted container %s", response["uuid"])
269
270         if response["state"] == "Final":
271             self.done(response)
272
273     def done(self, record):
274         try:
275             container = self.arvrunner.api.containers().get(
276                 uuid=record["container_uuid"]
277             ).execute(num_retries=self.arvrunner.num_retries)
278         except Exception as e:
279             logger.exception("While getting runner container: %s", e)
280             self.arvrunner.output_callback({}, "permanentFail")
281             del self.arvrunner.processes[record["uuid"]]
282         else:
283             super(RunnerContainer, self).done(container)
284         finally:
285             del self.arvrunner.processes[record["uuid"]]