https://prefect.io logo
Title
i

itay livni

10/15/2019, 2:34 AM
Hi - In a
Flow
I am looking to: (1) run a set of
tasks
(2) do something with the result in another `task`i.e. munge data. What is the suggested way to implement this? Is it using
set_upstream
? the example I see
say_hello.set_upstream(second_add, flow=flow)
waits for a specific task to finish not a set of tasks. Does this get handled under the hood?
c

Chris White

10/15/2019, 10:49 AM
Hey Itay - have a look at task.set_dependencies for setting multiple upstream dependencies at once!
i

itay livni

10/15/2019, 5:49 PM
something like this? How do I access the results of the upstream tasks?