How to get ray task again while the driver submit the task died?

python - how to get ray task again while the driver submit the task died? - Stack Overflow

or ray just kill the task if the driver submit the task died?

Tasks lifetime belong to the driver. So if your driver dies, all of tasks are killed

If you need this level of fault tolerance, you may consider this library Ray Workflows: Durable Ray Task Graphs — Ray 3.0.0.dev0. But this is currently at alpha

1 Like

I see,I guess i will use Actor instead now ,thx :grinning: