8 Copyright (C) The Arvados Authors. All rights reserved.
10 SPDX-License-Identifier: CC-BY-SA-3.0
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
55 h2(#introduction). Introduction
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.
59 The code examples assume you've built the @arv_client@ object by doing something like:
61 {% codeblock as python %}
63 arv_client = arvados.api('v1', ...)
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.
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.
70 Whenever you see the example UUID @zzzzz-zzzzz-12345abcde67890@, you should provide your own UUID from input.
72 h2(#working-with-current-user). Working with the current user
74 h3(#fetch-current-user). Fetch the current user
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.
78 {% codeblock as python %}
79 current_user = arv_client.users().current().execute()
82 h3(#list-shared-objects). List objects shared with the current user
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.
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.
94 ['uuid', 'is_a', 'arvados#group'],
95 ['group_class', '=', 'project'],
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',
102 ... # Work on item as desired
105 h2(#working-with-projects). Working with projects
107 h3(#create-a-project). Create a project
109 A project is represented in the Arvados API as a group with its @group_class@ field set to @"project"@.
111 {% codeblock as python %}
112 new_project = arv_client.groups().create(
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',
123 ensure_unique_name=True,
127 h3(#list-project-contents). List the contents of a project
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.
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.
144 ['uuid', 'is_a', 'arvados#group'],
145 ['group_class', '=', 'project'],
147 # Pass recursive=True to include results from subprojects in the listing.
149 # Pass include_trash=True to include objects in the listing whose
150 # trashed_at time is passed.
153 ... # Work on item as desired
156 h2(#working-with-permissions). Working with permissions
158 In brief, a permission is represented in Arvados as a link object with the following values:
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.
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.
167 h3(#grant-permission). Grant permission to an object
169 Create a link with values as documented above.
171 {% codeblock as python %}
172 permission = arv_client.links().create(
175 'link_class': 'permission',
176 # Adjust name for the level of permission you want to grant
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',
187 h3(#modify-permission). Modify permission on an object
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.
191 {% codeblock as python %}
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,
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'],
207 arv_client.links().update(
208 uuid=permission['uuid'],
217 h3(#revoke-permission). Revoke permission from an object
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.
221 {% codeblock as python %}
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,
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'],
237 arv_client.links().delete(
238 uuid=permission['uuid'],
242 h2(#working-with-properties). Working with properties
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.
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.
248 h3(#update-properties). Update the properties of an object
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.
252 {% codeblock as python %}
253 container_request = arv_client.container_requests().get(
254 uuid='zzzzz-xvhdp-12345abcde67890',
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'],
261 'container_request': {
262 'properties': new_properties,
268 h3(#translating-between-vocabulary-identifiers-and-labels). Translate between vocabulary identifiers and labels
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.
272 {% codeblock as python %}
273 import arvados.vocabulary
274 vocabulary = arvados.vocabulary.load_vocabulary(arv_client)
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({...})
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',
289 'properties': properties_by_identifier,
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}")
300 h3(#querying-the-vocabulary-definition). Query the vocabulary definition
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.
304 {% codeblock as python %}
305 import arvados.vocabulary
306 vocabulary = arvados.vocabulary.load_vocabulary(arv_client)
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()):
316 vocabulary_key.identifier,
317 vocabulary_key.preferred_label,
318 ', '.join(vocabulary_key.aliases[1:]),
321 for vocabulary_value in set(vocabulary_key.value_aliases.values()):
323 f'↳ {vocabulary_value.identifier}',
324 vocabulary_value.preferred_label,
325 ', '.join(vocabulary_value.aliases[1:]),
330 h2(#working-with-collections). Working with collections
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.
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.
336 h3(#load-collection). Load and update an existing collection
338 Construct the @Collection@ class with the UUID of a collection you want to read. You can pass additional constructor arguments as needed.
340 {% codeblock as python %}
341 import arvados.collection
342 collection = arvados.collection.Collection('zzzzz-4zz18-12345abcde67890', ...)
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:
347 {% codeblock as python %}
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.
353 {% codeblock as python %}
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',
362 h3(#create-collection). Create and save a new collection
364 Construct the @Collection@ class without an existing collection UUID or manifest text. You can pass additional constructor arguments as needed.
366 {% codeblock as python %}
367 import arvados.collection
368 new_collection = arvados.collection.Collection(...)
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.
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',
382 h3(#read-a-file-from-a-collection). Read a file from a collection
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:
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.
393 if not line.isspace():
397 h3(#download-a-file-from-a-collection). Download a file from a collection
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@:
401 {% codeblock as python %}
402 import arvados.collection
404 collection = arvados.collection.Collection(...)
406 collection.open('ExampleFile', 'rb') as src_file,
407 open('ExampleDownload', 'wb') as dst_file,
409 shutil.copyfileobj(src_file, dst_file)
412 h3(#write-a-file-into-a-new-collection). Write a file to a collection
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:
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
426 h3(#upload-a-file-into-a-new-collection). Upload a file to a collection
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@:
430 {% codeblock as python %}
431 import arvados.collection
433 collection = arvados.collection.Collection(...)
435 open('ExampleFile', 'rb') as src_file,
436 collection.open('ExampleUpload', 'wb') as dst_file,
438 shutil.copyfileobj(src_file, dst_file)
439 collection.save_new(...) # or collection.save() to update an existing collection
442 h3(#delete-a-file-from-an-existing-collection). Delete a file from a collection
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.
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
453 h3(#delete-a-directory-from-a-collection). Delete a directory from a collection recursively
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.
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
464 h3(#walk-collection). Walk over all files in a collection
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.
468 {% codeblock as python %}
469 import arvados.collection
472 root_collection = arvados.collection.Collection(...)
473 # Start work from the base stream.
474 stream_queue = collections.deque([pathlib.PurePosixPath('.')])
476 stream_path = stream_queue.popleft()
477 collection = root_collection.find(str(stream_path))
478 for item_name in collection:
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)
486 ... # Work with my_file as desired
489 h3(#copy-files-from-a-collection-to-another-collection). Copy a file between collections
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.
493 {% codeblock as python %}
494 import arvados.collection
495 src_collection = arvados.collection.Collection(...)
496 dst_collection = arvados.collection.Collection(...)
498 # The path of the source file or directory to copy
500 # The path where the source file or directory will be copied.
501 # Pass the empty string like this to copy it to the same path.
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.
511 dst_collection.save_new(...) # or dst_collection.save() to update an existing collection
514 h3(#combine-two-or-more-collections). Combine two or more collections
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.
518 {% codeblock as python %}
519 import arvados.collection
521 # Retrieve all of the source collection manifest texts
522 src_collection_uuid_list = [
523 'zzzzz-4zz18-111111111111111',
524 'zzzzz-4zz18-222222222222222',
528 arvados.collection.Collection(uuid).manifest_text()
529 for uuid in src_collection_uuid_list
532 # Initialize a new collection object from the concatenated manifest text
533 new_collection = arvados.collection.Collection(''.join(manifest_texts), ...)
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',
542 h3(#sharing-link). Create a collection sharing link
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.
546 {% codeblock as python %}
549 # The UUID of the collection you want to share
550 collection_uuid = 'zzzzz-4zz18-12345abcde67890'
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}/',
557 sharing_token = arv_client.api_client_authorizations().create(
559 'api_client_authorization': {
560 'scopes': sharing_token_scopes,
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]
569 sharing_url_parts = (
570 # The scheme your Keep web server uses. Change this to 'http' if necessary.
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}/_/',
579 sharing_url = urllib.parse.urlunsplit(sharing_url_parts)
583 h2(#working-with-containers). Working with containers
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.
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.
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.
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.
593 h3(#get-input-of-a-container). Get input of a container
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.
597 {% codeblock as python %}
598 container_request = arv_client.container_requests().get(
599 uuid='zzzzz-xvhdp-12345abcde67890',
601 # From here, you can process any of the container request's input fields.
602 # Below is an example of listing all the mounts.
604 for mount_name, mount_source in container_request['mounts'].items():
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']:
610 mount_summary.append(mount_source[key])
613 print(f"{mount_name}: {' '.join(mount_summary)}")
614 if mount_source.get('kind') == 'json':
615 pprint.pprint(mount_source.get('content'))
618 h3(#get-input-of-a-cwl-workflow). Get input of a CWL workflow run
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@.
622 {% codeblock as python %}
623 container_request = arv_client.container_requests().get(
624 uuid='zzzzz-xvhdp-12345abcde67890',
626 cwl_input = container_request['mounts']['/var/lib/cwl/cwl.input.json']['content']
627 ... # Work with the cwl_input dictionary
630 h3(#get-output-of-a-container). Get output of a container
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.
634 {% codeblock as python %}
635 import arvados.collection
636 container_request = arv_client.container_requests().get(
637 uuid='zzzzz-xvhdp-12345abcde67890',
639 container_output = arvados.collection.Collection(
640 container_request.get('output_uuid'),
642 ... # Work with the container_output collection object
645 h3(#get-output-of-a-cwl-workflow). Get output of a CWL workflow run
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.
649 {% codeblock as python %}
650 import arvados.collection
652 cwl_container_request = arv_client.container_requests().get(
653 uuid='zzzzz-xvhdp-12345abcde67890',
655 cwl_output_collection = arvados.collection.Collection(
656 cwl_container_request['output_uuid'],
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
663 h3(#get-log-of-a-child-request). Get logs of a container or CWL workflow run
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.
667 {% codeblock as python %}
668 import arvados.collection
669 container_request = arv_client.container_requests().get(
670 uuid='zzzzz-xvhdp-12345abcde67890',
672 log_collection = arvados.collection.Collection(
673 container_request['log_uuid'],
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.
679 with log_collection.open('stderr.txt') as containter_stderr:
680 shutil.copyfileobj(container_stderr, sys.stderr)
683 h3(#get-state-of-a-cwl-workflow). Get status of a container or CWL workflow run
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.
687 {% codeblock as python %}
688 container_request = arv_client.container_requests().get(
689 uuid='zzzzz-xvhdp-12345abcde67890',
691 if container_request['container_uuid'] is None:
692 status = container_request['state']
694 container = arv_client.containers().get(
695 uuid=container_request['container_uuid'],
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'):
703 elif container['runtime_status'].get('warning'):
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
714 h3(#list-failed-child-requests). List child requests of a container or CWL workflow run
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.
718 {% codeblock as python %}
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,
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.
733 ... # Work with each child container request
736 h3(#list-child-requests-of-container-request). List child requests of a container request
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.
740 {% codeblock as python %}
742 parent_container_request = arv_client.container_requests().get(
743 uuid='zzzzz-xvhdp-12345abcde67890',
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 = ()
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,
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.
762 for child_container_request in child_container_requests:
763 ... # Work with each child container request
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.
768 h2(#working-with-container-request-queue). Working with the container request queue
770 h3(#list-completed-container-requests). List completed container requests
772 Completed container requests have their @state@ field set to @"Final"@. You can list container requests with this filter to find completed requests.
774 {% codeblock as python %}
777 time_filter = datetime.datetime.utcnow()
778 time_filter -= datetime.timedelta(days=7)
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,
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'],
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
799 container_request['uuid'],
800 container_request['created_at'],
801 container_request['modified_at'],
805 h3(#cancel-a-container-request). Cancel a container request
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.
809 {% codeblock as python %}
810 cancelled_container_request = arv_client.container_requests().update(
811 uuid='zzzzz-xvhdp-12345abcde67890',
813 'container_request': {
820 h3(#cancel-all-container-requests). Cancel multiple pending container requests
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.
824 {% codeblock as python %}
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,
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.
840 cancelled_container_request = arv_client.container_requests().update(
841 uuid=container_request['uuid'],
843 'container_request': {