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 | |
create_log_dir
create_log_dir(log_dir=Path('logs'))
Create the log directory where job logs are stored.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
log_dir
|
Path
|
The directory to create logs in. Defaults to ./logs. |
Path('logs')
|
Source code in ezdag/dags.py
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 | |
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
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 | |
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
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 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 | |
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
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 | |
write_dag
write_dag(filename, path=None, **kwargs)
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.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
filename
|
str
|
The name of the DAG description file itself, e.g. my_dag.dag. |
required |
path
|
Path
|
The directory to write the DAG files to. Defaults to the current working directory. |
None
|
**kwargs
|
Any other keyword arguments that htcondor.dags.write_dag accepts |
{}
|
Source code in ezdag/dags.py
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 | |
write_script
write_script(filename, path=None)
Write out the list of commands for each node to the given directory.
This 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 |
|---|---|---|---|
filename
|
str
|
The name of the script file itself, e.g. my_dag.sh. |
required |
path
|
Path
|
The directory to write the script file to. Defaults to the current working directory. |
None
|
Source code in ezdag/dags.py
293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 | |
EdgeConnector
EdgeConnector(indices)
Bases: BaseEdge
This edge connects individual nodes in layers given an explicit mapping.
Source code in ezdag/dags.py
417 418 | |
write_dag
write_dag(dag, dag_dir=None, formatter=None, **kwargs)
Write out the given DAG to the given directory.
This includes the DAG description file itself, as well as any associated submit descriptions.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
dag
|
DAG
|
The DAG to write. |
required |
dag_dir
|
Path
|
The directory to write the DAG files to. Defaults to the current working directory. |
None
|
formatter
|
NodeNameFormatter
|
Defines how the node names are defined and formatted. Defaults to a hex-based formatter with 5 digits. |
None
|
**kwargs
|
Any other keyword arguments that htcondor.dags.write_dag accepts |
{}
|
Source code in ezdag/dags.py
425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 | |