21123: the empty string -> an empty string
[arvados.git] / doc / sdk / python / cookbook.html.textile.liquid
1 ---
2 layout: default
3 navsection: sdk
4 navmenu: Python
5 title: Code cookbook
6 ...
7 {% comment %}
8 Copyright (C) The Arvados Authors. All rights reserved.
9
10 SPDX-License-Identifier: CC-BY-SA-3.0
11 {% endcomment %}
12
13 # "Introduction":#introduction
14 # "Working with the current user":#working-with-current-user
15 ## "Fetch the current user":#fetch-current-user
16 ## "List objects shared with the current user":#list-shared-objects
17 # "Working with projects":#working-with-projects
18 ## "Create a project":#create-a-project
19 ## "List the contents of a project":#list-project-contents
20 # "Working with permissions":#working-with-permissions
21 ## "Grant permission to an object":#grant-permission
22 ## "Modify permission on an object":#modify-permission
23 ## "Revoke permission from an object":#revoke-permission
24 # "Working with properties":#working-with-properties
25 ## "Update the properties of an object":#update-properties
26 ## "Translate between vocabulary identifiers and labels":#translating-between-vocabulary-identifiers-and-labels
27 ## "Query the vocabulary definition":#querying-the-vocabulary-definition
28 # "Working with collections":#working-with-collections
29 ## "Load and update an existing collection":#load-collection
30 ## "Create and save a new collection":#create-collection
31 ## "Read a file from a collection":#read-a-file-from-a-collection
32 ## "Download a file from a collection":#download-a-file-from-a-collection
33 ## "Write a file to a collection":#write-a-file-into-a-new-collection
34 ## "Upload a file to a collection":#upload-a-file-into-a-new-collection
35 ## "Delete a file from a collection":#delete-a-file-from-an-existing-collection
36 ## "Delete a directory from a collection recursively":#delete-a-directory-from-a-collection
37 ## "Walk over all files in a collection":#walk-collection
38 ## "Copy a file between collections":#copy-files-from-a-collection-to-another-collection
39 ## "Combine two or more collections":#combine-two-or-more-collections
40 ## "Create a collection sharing link":#sharing-link
41 # "Working with containers and workflow runs":#working-with-containers
42 ## "Get input of a container":#get-input-of-a-container
43 ## "Get input of a CWL workflow run":#get-input-of-a-cwl-workflow
44 ## "Get output of a container":#get-output-of-a-container
45 ## "Get output of a CWL workflow run":#get-output-of-a-cwl-workflow
46 ## "Get logs of a container or CWL workflow run":#get-log-of-a-child-request
47 ## "Get status of a container or CWL workflow run":#get-state-of-a-cwl-workflow
48 ## "List child requests of a container or CWL workflow run":#list-failed-child-requests
49 ## "List child requests of a container request":#list-child-requests-of-container-request
50 # "Working with the container request queue":#working-with-container-request-queue
51 ## "List completed container requests":#list-completed-container-requests
52 ## "Cancel a container request":#cancel-a-container-request
53 ## "Cancel multiple pending container requests":#cancel-all-container-requests
54
55 h2(#introduction). Introduction
56
57 This page provides example code to perform various high-level tasks using Arvados' Python SDK. This page assumes you've already read the "API client documentation":{{ site.baseurl }}/sdk/python/api-client.html and understand the basics of using the Python SDK client. You don't have to have the details of every API method memorized, but you should at least be comfortable with the pattern of calling a resource type, API method, and @execute()@, as well as the dictionaries these methods return.
58
59 The code examples assume you've built the @arv_client@ object by doing something like:
60
61 {% codeblock as python %}
62 import arvados
63 arv_client = arvados.api('v1', ...)
64 {% endcodeblock %}
65
66 These examples work no matter how you call @arvados.api()@, or if you use another constructor from "@arvados.api@ module":{{ site.baseurl }}/sdk/python/arvados/api.html. Just understand that @arv_client@ represents your client object, no matter how you built it.
67
68 Whenever you see the Ellipsis object @...@ in these examples, that means you may need or want to fill something in. That might be list items, function arguments, or your own code. Comments will provide additional guidance.
69
70 Whenever you see the example UUID @zzzzz-zzzzz-12345abcde67890@, you should provide your own UUID from input.
71
72 h2(#working-with-current-user). Working with the current user
73
74 h3(#fetch-current-user). Fetch the current user
75
76 The API provides a "dedicated users method named @current@":{{ site.baseurl }}/api/methods/users.html#current. It returns the user object that is authenticated by your current API token. Use this method to get the current user's UUID to use in other API calls, or include user details like name in your output.
77
78 {% codeblock as python %}
79 current_user = arv_client.users().current().execute()
80 {% endcodeblock %}
81
82 h3(#list-shared-objects). List objects shared with the current user
83
84 The API provides a "dedicated groups method named @shared@":{{ site.baseurl }}/api/methods/groups.html#shared to do this. Call it like you would any other list method. This example illustrates some popular arguments. Check the API reference for full details of all possible arguments.
85
86 {% codeblock as python %}
87 for item in arvados.util.keyset_list_all(
88     # Pass the method keyset_list_all will call to retrieve items.
89     # Do not call it yourself.
90     arv_client.groups().shared,
91     # Pass filters to limit what objects are returned.
92     # This example returns only subprojects.
93     filters=[
94         ['uuid', 'is_a', 'arvados#group'],
95         ['group_class', '=', 'project'],
96     ],
97     # Pass order_key and ascending to control how the contents are sorted.
98     # This example lists projects in ascending creation time (the default).
99     order_key='created_at',
100     ascending=True,
101 ):
102     ...  # Work on item as desired
103 {% endcodeblock %}
104
105 h2(#working-with-projects). Working with projects
106
107 h3(#create-a-project). Create a project
108
109 A project is represented in the Arvados API as a group with its @group_class@ field set to @"project"@.
110
111 {% codeblock as python %}
112 new_project = arv_client.groups().create(
113     body={
114         'group': {
115             'group_class': 'project',
116             'name': 'Python SDK Test Project',
117             # owner_uuid can be the UUID for an Arvados user or group.
118             # Specify the UUID of an existing project to make a subproject.
119             # If not specified, the current user is the default owner.
120             'owner_uuid': 'zzzzz-j7d0g-12345abcde67890',
121         },
122     },
123     ensure_unique_name=True,
124 ).execute()
125 {% endcodeblock %}
126
127 h3(#list-project-contents). List the contents of a project
128
129 The API provides a "dedicated groups method named @contents@":{{ site.baseurl }}/api/methods/groups.html#contents to do this. Call it like you would any other list method. This example illustrates some popular arguments. Check the API reference for full details of all possible arguments.
130
131 {% codeblock as python %}
132 current_user = arv_client.users().current().execute()
133 for item in arvados.util.keyset_list_all(
134     # Pass the method keyset_list_all will call to retrieve items.
135     # Do not call it yourself.
136     arv_client.groups().contents,
137     # The UUID of the project whose contents we're listing.
138     # Pass a user UUID to list their home project.
139     # This example lists the current user's home project.
140     uuid=current_user['uuid'],
141     # Pass filters to limit what objects are returned.
142     # This example returns only subprojects.
143     filters=[
144         ['uuid', 'is_a', 'arvados#group'],
145         ['group_class', '=', 'project'],
146     ],
147     # Pass recursive=True to include results from subprojects in the listing.
148     recursive=False,
149     # Pass include_trash=True to include objects in the listing whose
150     # trashed_at time is passed.
151     include_trash=False,
152 ):
153     ...  # Work on item as desired
154 {% endcodeblock %}
155
156 h2(#working-with-permissions). Working with permissions
157
158 In brief, a permission is represented in Arvados as a link object with the following values:
159
160 * @link_class@ is @"permission"@.
161 * @name@ is one of @"can_read"@, @"can_write"@, @"can_manage"@, or @"can_login"@.
162 * @tail_uuid@ identifies the user or role group that receives the permission.
163 * @head_uuid@ identifies the Arvados object this permission grants access to.
164
165 For details, refer to the "Permissions model documentation":{{ site.baseurl }}/api/permission-model.html. Managing permissions is just a matter of ensuring the desired links exist using the standard @create@, @update@, and @delete@ methods.
166
167 h3(#grant-permission). Grant permission to an object
168
169 Create a link with values as documented above.
170
171 {% codeblock as python %}
172 permission = arv_client.links().create(
173     body={
174         'link': {
175             'link_class': 'permission',
176             # Adjust name for the level of permission you want to grant
177             'name': 'can_read',
178             # tail_uuid must identify a user or role group
179             'tail_uuid': 'zzzzz-tpzed-12345abcde67890',
180             # head_uuid can identify any Arvados object
181             'head_uuid': 'zzzzz-4zz18-12345abcde67890',
182         },
183     },
184 ).execute()
185 {% endcodeblock %}
186
187 h3(#modify-permission). Modify permission on an object
188
189 To modify an existing permission—for example, to change its access level—find the existing link object for the permission, then update it with the new values you want. This example shows changing all read-write permissions on a specific collection to read-only. Adjust the filters appropriately to find the permission(s) you want to modify.
190
191 {% codeblock as python %}
192 import arvados.util
193 for permission in arvados.util.keyset_list_all(
194     # Pass the method keyset_list_all will call to retrieve items.
195     # Do not call it yourself.
196     arv_client.links().list,
197     filters=[
198         # You should use this filter for all permission searches,
199         # to exclude other kinds of links.
200         ['link_class', '=', 'permission'],
201         # Add other filters as desired.
202         ['name', '=', 'can_write'],
203         ['head_uuid', '=', 'zzzzz-4zz18-12345abcde67890'],
204         ...,
205     ],
206 ):
207     arv_client.links().update(
208         uuid=permission['uuid'],
209         body={
210             'link': {
211                 'name': 'can_read',
212             },
213        },
214     ).execute()
215 {% endcodeblock %}
216
217 h3(#revoke-permission). Revoke permission from an object
218
219 To revoke an existing permission, find the existing link object for the permission, then delete it. This example shows revoking one user's permission to log into any virtual machines. Adjust the filters appropriately to find the permission(s) you want to revoke.
220
221 {% codeblock as python %}
222 import arvados.util
223 for permission in arvados.util.keyset_list_all(
224     # Pass the method keyset_list_all will call to retrieve items.
225     # Do not call it yourself.
226     arv_client.links().list,
227     filters=[
228         # You should use this filter for all permission searches,
229         # to exclude other kinds of links.
230         ['link_class', '=', 'permission'],
231         # Add other filters as desired.
232         ['name', '=', 'can_login'],
233         ['tail_uuid', '=', 'zzzzz-tpzed-12345abcde67890'],
234         ...,
235     ],
236 ):
237     arv_client.links().delete(
238         uuid=permission['uuid'],
239     ).execute()
240 {% endcodeblock %}
241
242 h2(#working-with-properties). Working with properties
243
244 Container requests, collections, groups, and links can have metadata properties set through their @properties@ field. For details, refer to the "Metadata properties API reference":{{ site.baseurl }}/api/properties.html.
245
246 An Arvados cluster can be configured to use a metadata vocabulary. If this is set up, the vocabulary defines standard identifiers and specific properties and their values. These identifiers can also have more human-friendly aliases. The cluster can also be configured to use the vocabulary strictly, so clients may _only_ set properties on objects that are defined in the vocabulary. For more information about configuring a metadata vocabulary, refer to the "Metadata vocabulary administration documentation":{{ site.baseurl }}/admin/metadata-vocabulary.html.
247
248 h3(#update-properties). Update the properties of an object
249
250 To set an object's properties to a new value, just call the resource's @update@ method with a new @properties@ field in the body. If you want to make changes to the current set of properties, @get@ the object, build a new dictionary based on its @properties@ field, then call the resource's @update@ method with your new dictionary as the @properties@. Below is an example for a container request.
251
252 {% codeblock as python %}
253 container_request = arv_client.container_requests().get(
254     uuid='zzzzz-xvhdp-12345abcde67890',
255 ).execute()
256 new_properties = dict(container_request['properties'])
257 ...  # Make your desired changes to new_proprties
258 container_request = arv_client.container_requests().update(
259     uuid=container_request['uuid'],
260     body={
261         'container_request': {
262             'properties': new_properties,
263         },
264     },
265 ).execute()
266 {% endcodeblock %}
267
268 h3(#translating-between-vocabulary-identifiers-and-labels). Translate between vocabulary identifiers and labels
269
270 Client software might need to present properties to the user in a human-readable form or take input from the user without requiring them to remember identifiers. The "@Vocabulary.convert_to_labels@":{{ site.baseurl }}/sdk/python/arvados/vocabulary.html#arvados.vocabulary.Vocabulary.convert_to_labels and "@Vocabulary.convert_to_identifiers@":{{ site.baseurl }}/sdk/python/arvados/vocabulary.html#arvados.vocabulary.Vocabulary.convert_to_identifiers methods help with these tasks, respectively.
271
272 {% codeblock as python %}
273 import arvados.vocabulary
274 vocabulary = arvados.vocabulary.load_vocabulary(arv_client)
275
276 # The argument should be a mapping of vocabulary keys and values using any
277 # defined aliases, like this:
278 #   {'Creature': 'Human', 'Priority': 'Normal'}
279 # The return value will be an analogous mapping where all the aliases have
280 # been translated to identifiers, like this:
281 #   {'IDTAGANIMALS': 'IDVALANIMALS2', 'IDTAGIMPORTANCES': 'IDTAGIMPORTANCES1'}
282 properties_by_identifier = vocabulary.convert_to_identifiers({...})
283
284 # You can use this to set metadata properties on objects that support them.
285 project = arv_client.groups().update(
286     uuid='zzzzz-j7d0g-12345abcde67890',
287     body={
288         'group': {
289             'properties': properties_by_identifier,
290         },
291     },
292 ).execute()
293
294 # You can report properties to the user by their preferred name.
295 print(f"{project['name']} ({project['group_class']} {project['uuid']}) updated with properties:")
296 for key, value in vocabulary.convert_to_labels(project['properties']).items():
297     print(f"↳ {key}: {value}")
298 {% endcodeblock %}
299
300 h3(#querying-the-vocabulary-definition). Query the vocabulary definition
301
302 The @arvados.vocabulary@ module provides facilities to interact with the "active metadata vocabulary":{{ site.baseurl }}/admin/metadata-vocabulary.html in the system. The "@Vocabulary@ class":{{ site.baseurl }}/sdk/python/arvados/vocabulary.html#arvados.vocabulary.Vocabulary provides a mapping-like view of a cluster's configured vocabulary.
303
304 {% codeblock as python %}
305 import arvados.vocabulary
306 vocabulary = arvados.vocabulary.load_vocabulary(arv_client)
307
308 # You can use the vocabulary object to access specific keys and values by
309 # case-insensitive mapping, like this:
310 #   vocabulary_value = vocabulary[key_alias][value_alias]
311 # You can also access the `key_aliases` and `value_aliases` mapping
312 # attributes directly to view the entire vocabulary. The example below
313 # writes a plaintext table of the vocabulary.
314 for vocabulary_key in set(vocabulary.key_aliases.values()):
315     print(
316         vocabulary_key.identifier,
317         vocabulary_key.preferred_label,
318         ', '.join(vocabulary_key.aliases[1:]),
319         sep='\t',
320     )
321     for vocabulary_value in set(vocabulary_key.value_aliases.values()):
322         print(
323             f'↳ {vocabulary_value.identifier}',
324             vocabulary_value.preferred_label,
325             ', '.join(vocabulary_value.aliases[1:]),
326             sep='\t',
327         )
328 {% endcodeblock %}
329
330 h2(#working-with-collections). Working with collections
331
332 The "@arvados.collection.Collection@ class":{{ site.baseurl }}/sdk/python/arvados/collection.html#arvados.collection.Collection provides a high-level interface to read, create, and update collections. It orchestrates multiple requests to API and Keep so you don't have to worry about the low-level details of keeping everything in sync. It uses threads to make multiple requests to Keep in parallel.
333
334 This page only shows you how to perform common tasks using the @Collection@ class. To see all the supported constructor arguments and methods, refer to "the @Collection@ class documentation":{{ site.baseurl }}/sdk/python/arvados/collection.html#arvados.collection.Collection.
335
336 h3(#load-collection). Load and update an existing collection
337
338 Construct the @Collection@ class with the UUID of a collection you want to read. You can pass additional constructor arguments as needed.
339
340 {% codeblock as python %}
341 import arvados.collection
342 collection = arvados.collection.Collection('zzzzz-4zz18-12345abcde67890', ...)
343 {% endcodeblock %}
344
345 If you make changes to the collection and want to update the existing collection, call the "@Collection.save@ method":{{ site.baseurl }}/sdk/python/arvados/collection.html#arvados.collection.Collection.save:
346
347 {% codeblock as python %}
348 collection.save()
349 {% endcodeblock %}
350
351 If you would rather save your changes as a new collection object, call the "@Collection.save_new@ method":{{ site.baseurl }}/sdk/python/arvados/collection.html#arvados.collection.Collection.save_new. This example illustrates some popular arguments. Check the API reference for full details of all possible arguments.
352
353 {% codeblock as python %}
354 collection.save_new(
355     name='Collection updated by Python SDK',
356     # owner_uuid can be the UUID for an Arvados user or group.
357     # Specify the UUID of a project to add this collection to it.
358     owner_uuid='zzzzz-j7d0g-12345abcde67890',
359 )
360 {% endcodeblock %}
361
362 h3(#create-collection). Create and save a new collection
363
364 Construct the @Collection@ class without an existing collection UUID or manifest text. You can pass additional constructor arguments as needed.
365
366 {% codeblock as python %}
367 import arvados.collection
368 new_collection = arvados.collection.Collection(...)
369 {% endcodeblock %}
370
371 Usually you'll upload or copy files to the new collection. Once you're done with that and ready to save your changes, call the "@Collection.save_new@ method":{{ site.baseurl }}/sdk/python/arvados/collection.html#arvados.collection.Collection.save_new. This example illustrates some popular arguments. Check the API reference for full details of all possible arguments.
372
373 {% codeblock as python %}
374 new_collection.save_new(
375     name='Collection created by Python SDK',
376     # owner_uuid can be the UUID for an Arvados user or group.
377     # Specify the UUID of a project to add this collection to it.
378     owner_uuid='zzzzz-j7d0g-12345abcde67890',
379 )
380 {% endcodeblock %}
381
382 h3(#read-a-file-from-a-collection). Read a file from a collection
383
384 Once you have a @Collection@ object, the "@Collection.open@ method":{{ site.baseurl }}/sdk/python/arvados/collection.html#arvados.collection.RichCollectionBase.open lets you open files from a collection the same way you would open files from disk using Python's built-in @open@ function. It returns a file-like object that you can use in many of the same ways you would use any other file object. This example prints all non-empty lines from @ExampleFile@ in your collection:
385
386 {% codeblock as python %}
387 import arvados.collection
388 collection = arvados.collection.Collection(...)
389 with collection.open('ExampleFile') as my_file:
390     # Read from my_file as desired.
391     # This example prints all non-empty lines from the file to stdout.
392     for line in my_file:
393         if not line.isspace():
394             print(line, end='')
395 {% endcodeblock %}
396
397 h3(#download-a-file-from-a-collection). Download a file from a collection
398
399 Once you have a @Collection@ object, the "@Collection.open@ method":{{ site.baseurl }}/sdk/python/arvados/collection.html#arvados.collection.RichCollectionBase.open lets you open files from a collection the same way you would open files from disk using Python's built-in @open@ function. You pass a second mode argument like @'rb'@ to open the file in binary mode. It returns a file-like object that you can use in many of the same ways you would use any other file object. You can pass it as a source to Python's standard "@shutil.copyfileobj@ function":https://docs.python.org/3/library/shutil.html#shutil.copyfileobj to download it. This code downloads @ExampleFile@ from your collection and saves it to the current working directory as @ExampleDownload@:
400
401 {% codeblock as python %}
402 import arvados.collection
403 import shutil
404 collection = arvados.collection.Collection(...)
405 with (
406   collection.open('ExampleFile', 'rb') as src_file,
407   open('ExampleDownload', 'wb') as dst_file,
408 ):
409     shutil.copyfileobj(src_file, dst_file)
410 {% endcodeblock %}
411
412 h3(#write-a-file-into-a-new-collection). Write a file to a collection
413
414 Once you have a @Collection@ object, the "@Collection.open@ method":{{ site.baseurl }}/sdk/python/arvados/collection.html#arvados.collection.RichCollectionBase.open lets you open files from a collection the same way you would open files from disk using Python's built-in @open@ function. Pass a second mode argument like @'w'@, @'a'@, or @'wb'@ to write a file in the collection. It returns a file-like object that you can use in many of the same ways you would use any other file object. This example writes @Hello, Arvados!@ to a file named @ExampleHello@ in your collection:
415
416 {% codeblock as python %}
417 import arvados.collection
418 collection = arvados.collection.Collection(...)
419 with collection.open('ExampleFile', 'w') as my_file:
420     # Write to my_file as desired.
421     # This example writes "Hello, Arvados!" to the file.
422     print("Hello, Arvados!", file=my_file)
423 collection.save_new(...)  # or collection.save() to update an existing collection
424 {% endcodeblock %}
425
426 h3(#upload-a-file-into-a-new-collection). Upload a file to a collection
427
428 Once you have a @Collection@ object, the "@Collection.open@ method":{{ site.baseurl }}/sdk/python/arvados/collection.html#arvados.collection.RichCollectionBase.open lets you open files from a collection the same way you would open files from disk using Python's built-in @open@ function. Pass a second mode argument like @'w'@, @'a'@, or @'wb'@ to write a file in the collection. It returns a file-like object that you can use in many of the same ways you would use any other file object. You can pass it as a destination to Python's standard "@shutil.copyfileobj@ function":https://docs.python.org/3/library/shutil.html#shutil.copyfileobj to upload data from a source file. This example reads @ExampleFile@ from the current working directory and uploads it into your collection as @ExampleUpload@:
429
430 {% codeblock as python %}
431 import arvados.collection
432 import shutil
433 collection = arvados.collection.Collection(...)
434 with (
435   open('ExampleFile', 'rb') as src_file,
436   collection.open('ExampleUpload', 'wb') as dst_file,
437 ):
438     shutil.copyfileobj(src_file, dst_file)
439 collection.save_new(...)  # or collection.save() to update an existing collection
440 {% endcodeblock %}
441
442 h3(#delete-a-file-from-an-existing-collection). Delete a file from a collection
443
444 Once you have a @Collection@ object, call the "@Collection.remove@ method":{{ site.baseurl }}/sdk/python/arvados/collection.html#arvados.collection.Collection.remove with a file path to remove that file or directory from the collection.
445
446 {% codeblock as python %}
447 import arvados.collection
448 collection = arvados.collection.Collection(...)
449 collection.remove('ExamplePath')
450 collection.save_new(...)  # or collection.save() to update an existing collection
451 {% endcodeblock %}
452
453 h3(#delete-a-directory-from-a-collection). Delete a directory from a collection recursively
454
455 Once you have a @Collection@ object, call the "@Collection.remove@ method":{{ site.baseurl }}/sdk/python/arvados/collection.html#arvados.collection.Collection.remove with a directory path and @recursive=True@ to delete everything under that directory from the collection.
456
457 {% codeblock as python %}
458 import arvados.collection
459 collection = arvados.collection.Collection(...)
460 collection.remove('ExampleDirectoryPath', recursive=True)
461 collection.save_new(...)  # or collection.save() to update an existing collection
462 {% endcodeblock %}
463
464 h3(#walk-collection). Walk over all files in a collection
465
466 Once you have a @Collection@ object, you can iterate over it to retrieve the names of all files and streams in it. Streams are like subdirectories: you can open them using the "@Collection.find@ method":{{ site.baseurl }}/sdk/python/python.html, and work with the files in them just like you would in the original collection. This example shows how to combine these techniques to iterate all files in a collection, including its streams.
467
468 {% codeblock as python %}
469 import arvados.collection
470 import collections
471 import pathlib
472 root_collection = arvados.collection.Collection(...)
473 # Start work from the base stream.
474 stream_queue = collections.deque([pathlib.PurePosixPath('.')])
475 while stream_queue:
476     stream_path = stream_queue.popleft()
477     collection = root_collection.find(str(stream_path))
478     for item_name in collection:
479         try:
480             my_file = collection.open(item_name)
481         except IsADirectoryError:
482             # item_name refers to a stream. Queue it to walk later.
483             stream_queue.append(stream_path / item_name)
484             continue
485         with my_file:
486             ...  # Work with my_file as desired
487 {% endcodeblock %}
488
489 h3(#copy-files-from-a-collection-to-another-collection). Copy a file between collections
490
491 Once you have one or more @Collection@ objects, call the "@Collection.copy@ method":{{ site.baseurl }}/sdk/python/arvados/collection.html#arvados.collection.RichCollectionBase.copy on the destination collection to copy files to it. This method doesn't re-upload data, so it's very efficient.
492
493 {% codeblock as python %}
494 import arvados.collection
495 src_collection = arvados.collection.Collection(...)
496 dst_collection = arvados.collection.Collection(...)
497 dst_collection.copy(
498     # The path of the source file or directory to copy
499     'ExamplePath',
500     # The path where the source file or directory will be copied.
501     # Pass an empty string like this to copy it to the same path.
502     '',
503     # The collection where the source file or directory comes from.
504     # If not specified, the default is the current collection (so you'll
505     # make multiple copies of the same data in the same collection).
506     source_collection=src_collection,
507     # Pass overwrite=True to force the method to overwrite any data
508     # that already exists at the given path in the current collection.
509     overwrite=False,
510 )
511 dst_collection.save_new(...)  # or dst_collection.save() to update an existing collection
512 {% endcodeblock %}
513
514 h3(#combine-two-or-more-collections). Combine two or more collections
515
516 You can concatenate manifest texts from multiple collections to create a single collection that contains all the data from the source collections. Note that if multiple source collections have data at the same path, the merged collection will have a single file at that path with concatenated data from the source collections.
517
518 {% codeblock as python %}
519 import arvados.collection
520
521 # Retrieve all of the source collection manifest texts
522 src_collection_uuid_list = [
523     'zzzzz-4zz18-111111111111111',
524     'zzzzz-4zz18-222222222222222',
525     ...,
526 ]
527 manifest_texts = [
528     arvados.collection.Collection(uuid).manifest_text()
529     for uuid in src_collection_uuid_list
530 ]
531
532 # Initialize a new collection object from the concatenated manifest text
533 new_collection = arvados.collection.Collection(''.join(manifest_texts), ...)
534
535 # Record the new collection in Arvados
536 new_collection.save_new(
537     name='Collection merged by Python SDK',
538     owner_uuid='zzzzz-j7d0g-12345abcde67890',
539 )
540 {% endcodeblock %}
541
542 h3(#sharing-link). Create a collection sharing link
543
544 You can create a sharing link for a collection by creating a new API token that is only allowed to read that collection; then constructing a link to your Keep web server that includes the collection UUID and the new token.
545
546 {% codeblock as python %}
547 import urllib.parse
548
549 # The UUID of the collection you want to share
550 collection_uuid = 'zzzzz-4zz18-12345abcde67890'
551
552 sharing_token_scopes = [
553     'GET /arvados/v1/keep_services/accessible',
554     f'GET /arvados/v1/collections/{collection_uuid}',
555     f'GET /arvados/v1/collections/{collection_uuid}/',
556 ]
557 sharing_token = arv_client.api_client_authorizations().create(
558     body={
559         'api_client_authorization': {
560             'scopes': sharing_token_scopes,
561         },
562     },
563 ).execute()
564 plain_token = sharing_token['api_token']
565 token_parts = plain_token.split('/')
566 if token_parts[0] == 'v2':
567     plain_token = token_parts[2]
568
569 sharing_url_parts = (
570     # The scheme your Keep web server uses. Change this to 'http' if necessary.
571     'https',
572     # The hostname, and optionally port, your Keep web server uses
573     'collections.zzzzz.example.com',
574     # You shouldn't need to change any other items
575     f'/c={collection_uuid}/t={plain_token}/_/',
576     None,
577     None,
578 )
579 sharing_url = urllib.parse.urlunsplit(sharing_url_parts)
580 print(sharing_url)
581 {% endcodeblock %}
582
583 h2(#working-with-containers). Working with containers
584
585 If you haven't already, start by reading the "Computing with Crunch":{{ site.baseurl }}/api/execution.html guide. It provides a high-level overview of how users submit work to Arvados as container requests; how Arvados dispatches that work to containers; and how Arvados records the association and results back on the original container request record.
586
587 If you have experience running CWL workflows on Workbench 2, it runs through this same API. When you start that workflow run, Workbench 2 creates a small container request to run a "CWL runner" tool with the specific inputs you gave it. Once Crunch dispatches a container for it, the CWL runner creates additional container requests to run each step of the workflow, and oversees the process until the workflow runs to completion. The UUID of this container is recorded in the @container_uuid@ field of the container request you submitted.
588
589 The UUID of the CWL runner container is recorded in the @requesting_container_uuid@ field of each container request it creates. You can list container requests with a filter on this field to inspect each step of the workflow individually, as shown below.
590
591 The next few examples show how to perform a task with a container request generally, and then provide a more specific example of working with a CWL runner container.
592
593 h3(#get-input-of-a-container). Get input of a container
594
595 A container request's most varied inputs are recorded in the @mounts@ field, which can include data from Keep, specific collections, Git checkouts, and static files. You might also be interested in the @environment@, @command@, @container_image@, and @secret_mounts@ fields. Refer to the "container requests API documentation":{{ site.baseurl }}/api/methods/container_requests.html for details.
596
597 {% codeblock as python %}
598 container_request = arv_client.container_requests().get(
599     uuid='zzzzz-xvhdp-12345abcde67890',
600 ).execute()
601 # From here, you can process any of the container request's input fields.
602 # Below is an example of listing all the mounts.
603 import pprint
604 for mount_name, mount_source in container_request['mounts'].items():
605     mount_summary = []
606     # These are the fields that define different types of mounts.
607     # Try to collect them all. Just skip any that aren't set.
608     for key in ['kind', 'uuid', 'portable_data_hash', 'commit', 'path']:
609         try:
610             mount_summary.append(mount_source[key])
611         except KeyError:
612             pass
613     print(f"{mount_name}: {' '.join(mount_summary)}")
614     if mount_source.get('kind') == 'json':
615         pprint.pprint(mount_source.get('content'))
616 {% endcodeblock %}
617
618 h3(#get-input-of-a-cwl-workflow). Get input of a CWL workflow run
619
620 When you run a CWL workflow, the CWL inputs are stored in the container request's @mounts@ field as a JSON mount named @/var/lib/cwl/cwl.input.json@.
621
622 {% codeblock as python %}
623 container_request = arv_client.container_requests().get(
624     uuid='zzzzz-xvhdp-12345abcde67890',
625 ).execute()
626 cwl_input = container_request['mounts']['/var/lib/cwl/cwl.input.json']['content']
627 ...  # Work with the cwl_input dictionary
628 {% endcodeblock %}
629
630 h3(#get-output-of-a-container). Get output of a container
631
632 A container's output files are saved in a collection. The UUID of that collection is recorded in the @output_uuid@ of the container request, which you can load as you like.
633
634 {% codeblock as python %}
635 import arvados.collection
636 container_request = arv_client.container_requests().get(
637     uuid='zzzzz-xvhdp-12345abcde67890',
638 ).execute()
639 container_output = arvados.collection.Collection(
640     container_request.get('output_uuid'),
641 )
642 ...  # Work with the container_output collection object
643 {% endcodeblock %}
644
645 h3(#get-output-of-a-cwl-workflow). Get output of a CWL workflow run
646
647 When you run a CWL workflow, the container request's output collection includes a file named @cwl.output.json@ that provides additional information about other files in the output.
648
649 {% codeblock as python %}
650 import arvados.collection
651 import json
652 cwl_container_request = arv_client.container_requests().get(
653     uuid='zzzzz-xvhdp-12345abcde67890',
654 ).execute()
655 cwl_output_collection = arvados.collection.Collection(
656     cwl_container_request['output_uuid'],
657 )
658 with cwl_output_collection.open('cwl.output.json') as cwl_output_file:
659     cwl_output = json.load(cwl_output_file)
660 ...  # Work with the cwl_output dictionary
661 {% endcodeblock %}
662
663 h3(#get-log-of-a-child-request). Get logs of a container or CWL workflow run
664
665 A container's log files are saved in a collection. The UUID of that collection is recorded in the @log_uuid@ of the container request, which you can load as you like.
666
667 {% codeblock as python %}
668 import arvados.collection
669 container_request = arv_client.container_requests().get(
670     uuid='zzzzz-xvhdp-12345abcde67890',
671 ).execute()
672 log_collection = arvados.collection.Collection(
673     container_request['log_uuid'],
674 )
675 # From here, you can process the container's log collection any way you like.
676 # Below is an example that writes the container's stderr to this process' stderr.
677 import shutil
678 import sys
679 with log_collection.open('stderr.txt') as containter_stderr:
680     shutil.copyfileobj(container_stderr, sys.stderr)
681 {% endcodeblock %}
682
683 h3(#get-state-of-a-cwl-workflow). Get status of a container or CWL workflow run
684
685 Workbench shows users a single status badge for container requests. This status is synthesized from different fields on the container request and associated container. This code shows how to do analogous reporting using the Python SDK.
686
687 {% codeblock as python %}
688 container_request = arv_client.container_requests().get(
689     uuid='zzzzz-xvhdp-12345abcde67890',
690 ).execute()
691 if container_request['container_uuid'] is None:
692     status = container_request['state']
693 else:
694     container = arv_client.containers().get(
695         uuid=container_request['container_uuid'],
696     ).execute()
697     container_state = container['state']
698     if container_state == 'Queued' or container_state == 'Locked':
699         status = "On hold" if container['priority'] == 0 else "Queued"
700     elif container_state == 'Running':
701         if container['runtime_status'].get('error'):
702             status = "Failing"
703         elif container['runtime_status'].get('warning'):
704             status = "Warning"
705         else:
706             status = container_state
707     elif container_state == 'Cancelled':
708         status = container_state
709     elif container_state == 'Complete':
710         status = "Completed" if container['exit_code'] == 0 else "Failed"
711 ...  # Report status as desired
712 {% endcodeblock %}
713
714 h3(#list-failed-child-requests). List child requests of a container or CWL workflow run
715
716 When a running container creates a container request to do additional work, the UUID of the source container is recorded in the @requesting_container_uuid@ field of the new container request. You can list container requests with this filter to find requests created by a specific container.
717
718 {% codeblock as python %}
719 import arvados.util
720 for child_container_requests in arvados.util.keyset_list_all(
721     # Pass the method keyset_list_all will call to retrieve items.
722     # Do not call it yourself.
723     arv_client.container_requests().list,
724     filters=[
725         # Note this is a container UUID, *not* a container request UUID
726         ['requesting_container_uuid', '=', 'zzzzz-dz642-12345abcde67890'],
727         # You may add other filters for your listing.
728         # For example, you could filter by 'name' to find specific kinds
729         # of steps of a CWL workflow.
730         ...,
731     ],
732 ):
733     ...  # Work with each child container request
734 {% endcodeblock %}
735
736 h3(#list-child-requests-of-container-request). List child requests of a container request
737
738 When a running container creates a container request to do additional work, the UUID of the source container is recorded in the @requesting_container_uuid@ field of the new container request. If all you have is the UUID of a container request, you can get that request, then list container requests with a filter where @requesting_container_uuid@ matches the @container_uuid@ of your request to find all its children.
739
740 {% codeblock as python %}
741 import arvados.util
742 parent_container_request = arv_client.container_requests().get(
743     uuid='zzzzz-xvhdp-12345abcde67890',
744 ).execute()
745 parent_container_uuid = parent_container_request['container_uuid']
746 if parent_container_uuid is None:
747     # No container has run for this request yet, so there cannot be child requests.
748     child_container_requests = ()
749 else:
750     child_container_requests = arvados.util.keyset_list_all(
751         # Pass the method keyset_list_all will call to retrieve items.
752         # Do not call it yourself.
753         arv_client.container_requests().list,
754         filters=[
755             ['requesting_container_uuid', '=', parent_container_uuid],
756             # You may add other filters for your listing.
757             # For example, you could filter by 'name' to find specific kinds
758             # of steps of a CWL workflow.
759             ...,
760         ],
761     )
762 for child_container_request in child_container_requests:
763     ...  # Work with each child container request
764 {% endcodeblock %}
765
766 With each child container request, you could repeat any of the recipes listed earlier in this section: examine their status, inputs, outputs, logs, and so on.
767
768 h2(#working-with-container-request-queue). Working with the container request queue
769
770 h3(#list-completed-container-requests). List completed container requests
771
772 Completed container requests have their @state@ field set to @"Final"@. You can list container requests with this filter to find completed requests.
773
774 {% codeblock as python %}
775 import arvados.util
776 import datetime
777 time_filter = datetime.datetime.utcnow()
778 time_filter -= datetime.timedelta(days=7)
779
780 for container_request in arvados.util.keyset_list_all(
781     # Pass the method keyset_list_all will call to retrieve items.
782     # Do not call it yourself.
783     arv_client.container_requests().list,
784     filters=[
785         # This is the filter you need to find completed container requests.
786         ['state', '=', 'Final'],
787         # There could be many completed container requests, so you should
788         # provide additional filters. This example limits the listing to
789         # container requests from the past week.
790         ['created_at', '>=', f'{time_filter.isoformat()}Z'],
791         ...,
792     ],
793 ):
794     # Work with each container_request as desired.
795     # This example provides a basic status table with the container request
796     # UUID, time the request was created, and time the container finished
797     # (both in UTC).
798     print(
799         container_request['uuid'],
800         container_request['created_at'],
801         container_request['modified_at'],
802     )
803 {% endcodeblock %}
804
805 h3(#cancel-a-container-request). Cancel a container request
806
807 To cancel a container request, update it to set its @priority@ field to 0. See the "containers API reference":{{ site.baseurl }}/api/methods/containers.html for details.
808
809 {% codeblock as python %}
810 cancelled_container_request = arv_client.container_requests().update(
811     uuid='zzzzz-xvhdp-12345abcde67890',
812     body={
813         'container_request': {
814             'priority': 0,
815         },
816     },
817 ).execute()
818 {% endcodeblock %}
819
820 h3(#cancel-all-container-requests). Cancel multiple pending container requests
821
822 If you want to cancel multiple pending container requests, you can list container requests with the @state@ field set to @"Committed"@, a @priority@ greater than zero, and any other filters you like. Then update each container request to set its @priority@ field to 0. See the "containers API reference":{{ site.baseurl }}/api/methods/containers.html for details.
823
824 {% codeblock as python %}
825 import arvados.util
826 for container_request in arvados.util.keyset_list_all(
827     # Pass the method keyset_list_all will call to retrieve items.
828     # Do not call it yourself.
829     arv_client.container_requests().list,
830     filters=[
831         # These are the filters you need to find cancellable container requests.
832         ['state', '=', 'Committed'],
833         ['priority', '>', 0],
834         # You can add other filters as desired.
835         # For example, you might filter on `requesting_container_uuid` to
836         # cancel only steps of one specific workflow.
837         ...,
838     ],
839 ):
840     cancelled_container_request = arv_client.container_requests().update(
841         uuid=container_request['uuid'],
842         body={
843             'container_request': {
844                 'priority': 0,
845             },
846         },
847     ).execute()
848 {% endcodeblock %}