RayWorkerError: The worker died unexpectedly while executing this task.
See original GitHub issueDescribe the problem
A Modin user has reported a RayWorkerError with running df.head()
, which involves some ray.get
calls.
Source code / logs
See https://github.com/modin-project/modin/issues/746
cc @masoodimran
Issue Analytics
- State:
- Created 4 years ago
- Comments:38 (17 by maintainers)
Top Results From Across the Web
ray.exceptions.WorkerCrashedError - Kubernetes
Getting this error when running a job on ray on k8s. ... WorkerCrashedError: The worker died unexpectedly while executing this task.
Read more >Modin read_csv issue - pandas - Stack Overflow
this issue seems to happen on all dataframe operations: RayWorkerError: The worker died unexpectedly while executing this task. Python 3.7.3 ...
Read more >Why did my worker die? - Dask.distributed
Note the special case of KilledWorker : this means that a particular task was tried on a worker, and it died, and then...
Read more >Issue 22393: multiprocessing.Pool shouldn't hang forever if a ...
When one of the workers is killed, the queue never returns an error for the task being run by the worker. Are there...
Read more >RayworkerError:执行此任务时,工作人员Unexpected 地死亡 ...
RayWorkerError: The worker died unexpectedly while executing this task. 描述问题. A Modin user has reported a RayWorkerError with running df.head() , which ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I have the same problem while reading csv. Just simple pd.read_csv()
Recently, I also faced a similar issue with an error “ray.exception.WorkerCrashedError. The worker died unexpectedly while executing this task.”.
But the issue arose only when I use many cores. For example, if I generate jobs for 20 cores to calculate, ray gave me the error. However, if I reduce the core counts (but the same task) down to 10, the error disappears.
Currently, I am okay with 10 cores so this issue is not that urgent, but I am wondering this is a known issue or not.
Thank you in advance!