Matthew Bell
03/09/2024, 10:17 PMprefect.utilities.annotations.quote
shown below, as I've been getting a warning when passing a large dataframe to prefect tasks.
The docs mention the following:
> prefect.utilities.annotations.quote
will disable task dependency tracking for the wrapped object, but likely will increase performance
What exactly is task dependency tracking? Is that the little flow chart arrows shown in the prefect UI?Nate
03/09/2024, 10:51 PM@flow
def foo():
foo_result = foo_task()
bar(foo_result) # bar takes foo's inputs, so bar "depends" on foo
and yea, in the UI that's visualized with the arrows between task or flow runsMatthew Bell
03/09/2024, 10:52 PM