8a6203496afc498f47910182dd1e7e26b55cfaca
[arvados.git] / doc / user / cwl / cwl-extensions.html.textile.liquid
1 ---
2 layout: default
3 navsection: userguide
4 title: Arvados CWL Extensions
5 ...
6
7 Arvados provides several extensions to CWL for workflow optimization, site-specific configuration, and to enable access the Arvados API.
8
9 To use Arvados CWL extensions, add the following @$namespaces@ section at the top of your CWL file:
10
11 <pre>
12 $namespaces:
13   arv: "http://arvados.org/cwl#"
14   cwltool: "http://commonwl.org/cwltool#"
15 </pre>
16
17 Arvados extensions should go into the @hints@ section, for example:
18
19 <pre>
20 hints:
21   arv:RunInSingleContainer: {}
22   arv:RuntimeConstraints:
23     keep_cache: 123456
24     keep_output_dir: local_output_dir
25   arv:PartitionRequirement:
26     partition: dev_partition
27   arv:APIRequirement: {}
28   cwltool:LoadListingRequirement:
29     loadListing: shallow_listing
30   arv:IntermediateOutput:
31     outputTTL: 3600
32 </pre>
33
34 h2. arv:RunInSingleContainer
35
36 Indicates that a subworkflow should run in a single container and not be scheduled as separate steps.
37
38 h2. arv:RuntimeConstraints
39
40 Set Arvados-specific runtime hints.
41
42 table(table table-bordered table-condensed).
43 |_. Field |_. Type |_. Description |
44 |keep_cache|int|Size of file data buffer for Keep mount in MiB. Default is 256 MiB. Increase this to reduce cache thrashing in situations such as accessing multiple large (64+ MiB) files at the same time, or performing random access on a large file.|
45 |outputDirType|enum|Preferred backing store for output staging.  If not specified, the system may choose which one to use.  One of *local_output_dir* or *keep_output_dir*|
46
47 *local_output_dir*: Use regular file system local to the compute node. There must be sufficient local scratch space to store entire output; specify this with @outdirMin@ of @ResourceRequirement@.  Files are batch uploaded to Keep when the process completes.  Most compatible, but upload step can be time consuming for very large files.
48
49 *keep_output_dir*: Use writable Keep mount.  Files are streamed to Keep as they are written.  Does not consume local scratch space, but does consume RAM for output buffers (up to 192 MiB per file simultaneously open for writing.)  Best suited to processes which produce sequential output of large files (non-sequential writes may produced fragmented file manifests).  Supports regular files and directories, does not support special files such as symlinks, hard links, named pipes, named sockets, or device nodes.|
50
51 h2. arv:PartitionRequirement
52
53 Select preferred compute partitions on which to run jobs.
54
55 table(table table-bordered table-condensed).
56 |_. Field |_. Type |_. Description |
57 |partition|string or array of strings||
58
59 h2. arv:APIRequirement
60
61 Indicates that process wants to access to the Arvados API.  Will be granted network access and have @ARVADOS_API_HOST@ and @ARVADOS_API_TOKEN@ set in the environment.  Tools which rely on the Arvados API being present should put @arv:APIRequirement@ in the @requirements@ section of the tool (rather than @hints@) to indicate that that it is not portable to non-Arvados CWL runners.
62
63 Use @arv:APIRequirement@ in @hints@ to enable general (non-Arvados-specific) network access for a tool.
64
65 h2. cwltool:LoadListingRequirement
66
67 In CWL v1.0 documents, the default behavior for Directory objects is to recursively expand the @listing@ for access by parameter references an expressions.  For directory trees containing many files, this can be expensive in both time and memory usage.  Use @cwltool:LoadListingRequirement@ to change the behavior for expansion of directory listings in the workflow runner.
68
69 table(table table-bordered table-condensed).
70 |_. Field |_. Type |_. Description |
71 |loadListing|string|One of @no_listing@, @shallow_listing@, or @deep_listing@|
72
73 *no_listing*: Do not expand directory listing at all.  The @listing@ field on the Directory object will be undefined.
74
75 *shallow_listing*: Only expand the first level of directory listing.  The @listing@ field on the toplevel Directory object will contain the directory contents, however @listing@ will not be defined on subdirectories.
76
77 *deep_listing*: Recursively expand all levels of directory listing.  The @listing@ field will be provided on the toplevel object and all subdirectories.
78
79 h2. arv:IntermediateOutput
80
81 Specify desired handling of intermediate output collections.
82
83 table(table table-bordered table-condensed).
84 |_. Field |_. Type |_. Description |
85 |outputTTL|int|If the value is greater than zero, consider intermediate output collections to be temporary and should be automatically trashed. Temporary collections will be trashed @outputTTL@ seconds after creation.  A value of zero means intermediate output should be retained indefinitely (this is the default behavior).
86 Note: arvados-cwl-runner currently does not take workflow dependencies into account when setting the TTL on an intermediate output collection. If the TTL is too short, it is possible for a collection to be trashed before downstream steps that consume it are started.  The recommended minimum value for TTL is the expected duration of the entire the workflow.|