Robin
09/18/2020, 8:26 AMmax_retries
and retry_delay
and I got the following error:
/opt/prefect/healthcheck.py:149: UserWarning: Task <Task: copy_storage> has retry settings but some upstream dependencies do not have result types. See <https://docs.prefect.io/core/concepts/results.html> for more details.
result_check(flows)
It's a mapped_task
.
I read the documentation about result types but that did not answer several questions:
• What might go wrong if I don't set a result type?
• If I understood correctly, the result type can be either flow
or task
. I think I want that the result type is flow, since each task should be only run once (if successful) so the result does not change during the flow. Is that correct?
• Should I therefore do something like with Flow("creative_name", result=flow_result)
? And what should I set flow_result
to?
Bests
Robinnicholas
09/18/2020, 2:17 PMRobin
09/22/2020, 6:37 AMnicholas
09/22/2020, 2:59 PMRobin
10/01/2020, 9:04 AM