prefect.flows
¶
Module containing the base workflow class and decorator - for most use cases, using the @flow
decorator is preferred.
Flow
¶
Bases: Generic[P, R]
A Prefect workflow definition.
Note
We recommend using the @flow
decorator for most use-cases.
Wraps a function with an entrypoint to the Prefect engine. To preserve the input
and output types, we use the generic type variables P
and R
for "Parameters" and
"Returns" respectively.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fn |
Callable[P, R]
|
The function defining the workflow. |
required |
name |
Optional[str]
|
An optional name for the flow; if not provided, the name will be inferred from the given function. |
None
|
version |
Optional[str]
|
An optional version string for the flow; if not provided, we will attempt to create a version string as a hash of the file containing the wrapped function; if the file cannot be located, the version will be null. |
None
|
flow_run_name |
Optional[str]
|
An optional name to distinguish runs of this flow; this name can be provided as a string template with the flow's parameters as variables. |
None
|
task_runner |
Union[Type[BaseTaskRunner], BaseTaskRunner]
|
An optional task runner to use for task execution within the flow;
if not provided, a |
ConcurrentTaskRunner
|
description |
str
|
An optional string description for the flow; if not provided, the description will be pulled from the docstring for the decorated function. |
None
|
timeout_seconds |
Union[int, float]
|
An optional number of seconds indicating a maximum runtime for the flow. If the flow exceeds this runtime, it will be marked as failed. Flow execution may continue until the next task is called. |
None
|
validate_parameters |
bool
|
By default, parameters passed to flows are validated by
Pydantic. This will check that input values conform to the annotated types
on the function. Where possible, values will be coerced into the correct
type; for example, if a parameter is defined as |
True
|
retries |
int
|
An optional number of times to retry on flow run failure. |
0
|
retry_delay_seconds |
Union[int, float]
|
An optional number of seconds to wait before retrying the
flow after failure. This is only applicable if |
0
|
persist_result |
Optional[bool]
|
An optional toggle indicating whether the result of this flow
should be persisted to result storage. Defaults to |
None
|
result_storage |
Optional[ResultStorage]
|
An optional block to use to perist the result of this flow. This value will be used as the default for any tasks in this flow. If not provided, the local file system will be used unless called as a subflow, at which point the default will be loaded from the parent flow. |
None
|
result_serializer |
Optional[ResultSerializer]
|
An optional serializer to use to serialize the result of this
flow for persistence. This value will be used as the default for any tasks
in this flow. If not provided, the value of |
None
|
on_failure |
Optional[List[Callable[[Flow, FlowRun, State], None]]]
|
An optional list of callables to run when the flow enters a failed state. |
None
|
on_completion |
Optional[List[Callable[[Flow, FlowRun, State], None]]]
|
An optional list of callables to run when the flow enters a completed state. |
None
|
Source code in prefect/flows.py
67 68 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 128 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 158 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 201 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 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 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 292 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 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 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 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 |
|
serialize_parameters
¶
Convert parameters to a serializable form.
Uses FastAPI's jsonable_encoder
to convert to JSON compatible objects without
converting everything directly to a string. This maintains basic types like
integers during API roundtrips.
Source code in prefect/flows.py
361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 |
|
validate_parameters
¶
Validate parameters for compatibility with the flow by attempting to cast the inputs to the associated types specified by the function's type annotations.
Returns:
Type | Description |
---|---|
Dict[str, Any]
|
A new dict of parameters that have been cast to the appropriate types |
Raises:
Type | Description |
---|---|
ParameterTypeError
|
if the provided parameters are not valid |
Source code in prefect/flows.py
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
|
with_options
¶
Create a new flow from the current object, updating provided options.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name |
str
|
A new name for the flow. |
None
|
version |
str
|
A new version for the flow. |
None
|
description |
str
|
A new description for the flow. |
None
|
flow_run_name |
str
|
An optional name to distinguish runs of this flow; this name can be provided as a string template with the flow's parameters as variables. |
None
|
task_runner |
Union[Type[BaseTaskRunner], BaseTaskRunner]
|
A new task runner for the flow. |
None
|
timeout_seconds |
Union[int, float]
|
A new number of seconds to fail the flow after if still running. |
None
|
validate_parameters |
bool
|
A new value indicating if flow calls should validate given parameters. |
None
|
retries |
int
|
A new number of times to retry on flow run failure. |
0
|
retry_delay_seconds |
Union[int, float]
|
A new number of seconds to wait before retrying the
flow after failure. This is only applicable if |
0
|
persist_result |
Optional[bool]
|
A new option for enabling or disabling result persistence. |
NotSet
|
result_storage |
Optional[ResultStorage]
|
A new storage type to use for results. |
NotSet
|
result_serializer |
Optional[ResultSerializer]
|
A new serializer to use for results. |
NotSet
|
cache_result_in_memory |
bool
|
A new value indicating if the flow's result should be cached in memory. |
None
|
on_failure |
Optional[List[Callable[[Flow, FlowRun, State], None]]]
|
A new list of callables to run when the flow enters a failed state. |
None
|
on_completion |
Optional[List[Callable[[Flow, FlowRun, State], None]]]
|
A new list of callables to run when the flow enters a completed state. |
None
|
Returns:
Type | Description |
---|---|
A new |
Examples:
Create a new flow from an existing flow and update the name:
>>> @flow(name="My flow")
>>> def my_flow():
>>> return 1
>>>
>>> new_flow = my_flow.with_options(name="My new flow")
Create a new flow from an existing flow, update the task runner, and call it without an intermediate variable:
>>> from prefect.task_runners import SequentialTaskRunner
>>>
>>> @flow
>>> def my_flow(x, y):
>>> return x + y
>>>
>>> state = my_flow.with_options(task_runner=SequentialTaskRunner)(1, 3)
>>> assert state.result() == 4
Source code in prefect/flows.py
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 265 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 292 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 322 323 324 325 326 327 328 329 330 |
|
flow
¶
Decorator to designate a function as a Prefect workflow.
This decorator may be used for asynchronous or synchronous functions.
Flow parameters must be serializable by Pydantic.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name |
Optional[str]
|
An optional name for the flow; if not provided, the name will be inferred from the given function. |
None
|
version |
Optional[str]
|
An optional version string for the flow; if not provided, we will attempt to create a version string as a hash of the file containing the wrapped function; if the file cannot be located, the version will be null. |
None
|
flow_run_name |
Optional[str]
|
An optional name to distinguish runs of this flow; this name can be provided as a string template with the flow's parameters as variables. |
None
|
task_runner |
BaseTaskRunner
|
An optional task runner to use for task execution within the flow; if
not provided, a |
ConcurrentTaskRunner
|
description |
str
|
An optional string description for the flow; if not provided, the description will be pulled from the docstring for the decorated function. |
None
|
timeout_seconds |
Union[int, float]
|
An optional number of seconds indicating a maximum runtime for the flow. If the flow exceeds this runtime, it will be marked as failed. Flow execution may continue until the next task is called. |
None
|
validate_parameters |
bool
|
By default, parameters passed to flows are validated by
Pydantic. This will check that input values conform to the annotated types
on the function. Where possible, values will be coerced into the correct
type; for example, if a parameter is defined as |
True
|
retries |
int
|
An optional number of times to retry on flow run failure. |
0
|
retry_delay_seconds |
Union[int, float]
|
An optional number of seconds to wait before retrying the
flow after failure. This is only applicable if |
0
|
persist_result |
Optional[bool]
|
An optional toggle indicating whether the result of this flow
should be persisted to result storage. Defaults to |
None
|
result_storage |
Optional[ResultStorage]
|
An optional block to use to perist the result of this flow. This value will be used as the default for any tasks in this flow. If not provided, the local file system will be used unless called as a subflow, at which point the default will be loaded from the parent flow. |
None
|
result_serializer |
Optional[ResultSerializer]
|
An optional serializer to use to serialize the result of this
flow for persistence. This value will be used as the default for any tasks
in this flow. If not provided, the value of |
None
|
log_prints |
Optional[bool]
|
If set, |
None
|
Returns:
Type | Description |
---|---|
A callable |
|
final state. |
Examples:
Define a simple flow
>>> from prefect import flow
>>> @flow
>>> def add(x, y):
>>> return x + y
Define an async flow
>>> @flow
>>> async def add(x, y):
>>> return x + y
Define a flow with a version and description
>>> @flow(version="first-flow", description="This flow is empty!")
>>> def my_flow():
>>> pass
Define a flow with a custom name
>>> @flow(name="The Ultimate Flow")
>>> def my_flow():
>>> pass
Define a flow that submits its tasks to dask
>>> from prefect_dask.task_runners import DaskTaskRunner
>>>
>>> @flow(task_runner=DaskTaskRunner)
>>> def my_flow():
>>> pass
Source code in prefect/flows.py
549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 |
|
load_flow_from_entrypoint
¶
Extract a flow object from a script at an entrypoint by running all of the code in the file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
entrypoint |
str
|
a string in the format |
required |
Returns:
Type | Description |
---|---|
Flow
|
The flow object from the script |
Raises:
Type | Description |
---|---|
FlowScriptError
|
If an exception is encountered while running the script |
MissingFlowError
|
If the flow function specified in the entrypoint does not exist |
Source code in prefect/flows.py
789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 |
|
load_flow_from_script
¶
Extract a flow object from a script by running all of the code in the file.
If the script has multiple flows in it, a flow name must be provided to specify the flow to return.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
path |
str
|
A path to a Python script containing flows |
required |
flow_name |
str
|
An optional flow name to look for in the script |
None
|
Returns:
Type | Description |
---|---|
Flow
|
The flow object from the script |
Raises:
Type | Description |
---|---|
FlowScriptError
|
If an exception is encountered while running the script |
MissingFlowError
|
If no flows exist in the iterable |
MissingFlowError
|
If a flow name is provided and that flow does not exist |
UnspecifiedFlowError
|
If multiple flows exist but no flow name was provided |
Source code in prefect/flows.py
762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 |
|
load_flow_from_text
¶
Load a flow from a text script.
The script will be written to a temporary local file path so errors can refer to line numbers and contextual tracebacks can be provided.
Source code in prefect/flows.py
824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 |
|
load_flows_from_script
¶
Load all flow objects from the given python script. All of the code in the file will be executed.
Returns:
Type | Description |
---|---|
List[Flow]
|
A list of flows |
Raises:
Type | Description |
---|---|
FlowScriptError
|
If an exception is encountered while running the script |
Source code in prefect/flows.py
748 749 750 751 752 753 754 755 756 757 758 759 |
|
select_flow
¶
Select the only flow in an iterable or a flow specified by name.
Returns A single flow object
Raises:
Type | Description |
---|---|
MissingFlowError
|
If no flows exist in the iterable |
MissingFlowError
|
If a flow name is provided and that flow does not exist |
UnspecifiedFlowError
|
If multiple flows exist but no flow name was provided |
Source code in prefect/flows.py
704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 |
|