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

**URL:** https://discuss.ray.io/t/how-to-get-ray-task-again-while-the-driver-submit-the-task-died/8636
**Category:** Ray Core
**Created:** [December 13, 2022, 6:00am UTC](https://discuss.ray.io/t/how-to-get-ray-task-again-while-the-driver-submit-the-task-died/8636 "2022-12-13T06:00:38Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![tarjintor](https://sea2.discourse-cdn.com/flex020/user_avatar/discuss.ray.io/tarjintor/32/3552_2.png) [@tarjintor](https://discuss.ray.io/u/tarjintor)
#### Post date: [December 13, 2022, 6:00am UTC](https://discuss.ray.io/t/how-to-get-ray-task-again-while-the-driver-submit-the-task-died/8636/1 "2022-12-13T06:00:39Z")

</div>

[python - how to get ray task again while the driver submit the task died? - Stack Overflow](https://stackoverflow.com/questions/74780524/how-to-get-ray-task-again-while-the-driver-submit-the-task-died)

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

---

<div class="post-metadata">

### Author: ![sangcho](https://sea2.discourse-cdn.com/flex020/user_avatar/discuss.ray.io/sangcho/32/425_2.png) [@sangcho](https://discuss.ray.io/u/sangcho)
#### Post date: [December 13, 2022, 7:05am UTC](https://discuss.ray.io/t/how-to-get-ray-task-again-while-the-driver-submit-the-task-died/8636/2 "2022-12-13T07:05:23Z")

</div>

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](https://docs.ray.io/en/master/workflows/index.html). But this is currently at alpha

---

<div class="post-metadata">

### Author: ![tarjintor](https://sea2.discourse-cdn.com/flex020/user_avatar/discuss.ray.io/tarjintor/32/3552_2.png) [@tarjintor](https://discuss.ray.io/u/tarjintor)
#### Post date: [December 13, 2022, 7:09am UTC](https://discuss.ray.io/t/how-to-get-ray-task-again-while-the-driver-submit-the-task-died/8636/3 "2022-12-13T07:09:28Z")

</div>

I see,I guess i will use Actor instead now ,thx 😀
