dags
DAG
DAG(name='workflow', formatter=None, *args, **kwargs)
Bases: DAG
Defines a DAGMan workflow including the execution graph and configuration.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
The name of the DAG workflow, used for files written to disk and for DAG submission when calling write() and submit(). Defaults to "workflow". |
'workflow'
|
formatter
|
NodeNameFormatter
|
Defines how the node names are defined and formatted. Defaults to a hex-based formatter with 5 digits. |
None
|
*args
|
Any positional arguments that htcondor.dags.DAG accepts |
()
|
|
**kwargs
|
Any keyword arguments that htcondor.dags.DAG accepts |
{}
|
Source code in ezdag/dags.py
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | |
attach
attach(layer)
Attach a layer of related job nodes to this DAG.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
layer
|
Layer
|
The layer to attach. |
required |
Source code in ezdag/dags.py
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 | |
submit
submit(path=None, *, write_script=False, **kwargs)
Submit the DAG via HTCondor.
If the DAG has not already been written to disk, do so as well.
This is equivalent to calling write() prior to submission, making
use of the path and write_script arguments for doing so. See
DAG.write for more information.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
Path
|
The directory to write the DAG files to. Defaults to the current working directory. |
None
|
write_script
|
bool
|
Also write out the list of commands for each node to disk. Defaults to false. |
False
|
**kwargs
|
Any keyword arguments that |
{}
|
Returns:
| Type | Description |
|---|---|
SubmitResult
|
The submit result containing the cluster ID and ClassAd of the submitted DAG. |
Source code in ezdag/dags.py
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 | |
visualize
visualize(path=None, image_format='svg')
Visualize a DAG.
Note: This requires graphviz to be installed.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
Path
|
The directory to write the graph diagram to. Defaults to the current working directory as {workflow}.png. |
None
|
image_format
|
str
|
The output file format to use. Defaults to 'svg'. |
'svg'
|
Source code in ezdag/dags.py
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 | |
write
write(path=None, *, write_script=False)
Write out the given DAG to the given directory.
This includes the DAG description file itself, as well as any associated submit descriptions and log directories.
Also optionally writes out the list of commands for each node, which represents commands that would be run on the execute point, after taking into account file location changes where the job would be run if file transfer is enabled.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
Path
|
The directory to write the DAG files to. Defaults to the current working directory. |
None
|
write_script
|
bool
|
Also write out the list of commands for each node to disk. Defaults to false. |
False
|
Source code in ezdag/dags.py
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 | |
EdgeConnector
EdgeConnector(indices)
Bases: BaseEdge
This edge connects individual nodes in layers given an explicit mapping.
Source code in ezdag/dags.py
342 343 | |