YD
11/06/2022, 6:00 PM.submit()
, .wait()
, `.result()`… ?)
In Prefect 1.0 the “task” had “timeout” and “retry_delay”, so that I was able to limit the run time of a task, but wait some time before trying to run it again. (this is useful since sometimes a task get stack due to some cluster resource issue, and I want to let some time pass before rerunning it)
(https://docs-v1.prefect.io/api/latest/core/task.html)
How would you do such a thing with Prefect 2.0 ?
(I see that t he flow decorator has those options, but not the task)Kalise Richmond
11/07/2022, 5:26 PM