[Feature] better error message for "ERROR node.py:1286 -- ERROR as"
See original GitHub issueSearch before asking
- I searched the issues and found no similar issues.
Ray Component
Ray Core
What happened + What you expected to happen
Installed ray using the helm charts from 95d1476:
helm -n ray upgrade --install example-cluster --create-namespace deploy/charts/ray
Open a shell on the head node and try and connect:
❯ kubectl exec -i -t -n ray example-cluster-ray-head-type-dqhkd -- /bin/bash
(base) ray@example-cluster-ray-head-type-dqhkd:~$ python
Python 3.7.7 (default, May 7 2020, 21:25:33)
[GCC 7.3.0] :: Anaconda, Inc. on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import ray
>>> ray.init(address='127.0.0.1:10001')
2022-01-16 03:22:37,246 INFO worker.py:843 -- Connecting to existing Ray cluster at address: 10.42.1.3:10001
2022-01-16 03:22:57,309 ERROR node.py:1286 -- ERROR as
2022-01-16 03:23:19,330 ERROR node.py:1286 -- ERROR as
2022-01-16 03:23:41,363 ERROR node.py:1286 -- ERROR as
2022-01-16 03:24:03,429 ERROR node.py:1286 -- ERROR as
2022-01-16 03:24:25,463 ERROR node.py:1286 -- ERROR as
2022-01-16 03:24:47,491 ERROR node.py:1286 -- ERROR as
2022-01-16 03:25:09,518 ERROR node.py:1286 -- ERROR as
2022-01-16 03:25:31,585 ERROR node.py:1286 -- ERROR as
2022-01-16 03:25:53,618 ERROR node.py:1286 -- ERROR as
2022-01-16 03:26:15,755 ERROR node.py:1286 -- ERROR as
2022-01-16 03:26:37,789 ERROR node.py:1286 -- ERROR as
2022-01-16 03:26:59,853 ERROR node.py:1286 -- ERROR as
2022-01-16 03:27:21,876 ERROR node.py:1286 -- ERROR as
2022-01-16 03:27:43,902 ERROR node.py:1286 -- ERROR as
2022-01-16 03:28:05,930 ERROR node.py:1286 -- ERROR as
Versions / Dependencies
docker image:
rayproject/ray:latest 76bb0e37faafa
ray 1.9.2
Reproduction script
See above
Anything else
No response
Are you willing to submit a PR?
- Yes I am willing to submit a PR!
Issue Analytics
- State:
- Created 2 years ago
- Comments:8 (6 by maintainers)
Top Results From Across the Web
Better Error Handling In NodeJS With Error Classes
This article is for JavaScript and NodeJS developers who want to improve error-handling in their applications.
Read more >15 Common Error Codes in Node.js and How to Fix Them
Therefore, we've compiled this list of 15 common Node.js errors along with one or more strategies to follow to fix each one.
Read more >Designing Error Messages and a Logging Strategy in Node.js
Learn how to structure helpful error messages and follow a good logging strategy.
Read more >Node.js Error Handling Best Practices - Sematext
Learn what is Node.js error handling and why do you need it. From using middleware to catching uncaught exceptions, discover the best ways ......
Read more >A Comprehensive Guide To Error Handling In Node.js
Errors happen in every application. Devs have to decide: do you write code to handle the error? Suppress it? Notify the user?
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
Ah I see. It makes sense. We will handle the error message.
ping