nuplan-devkit icon indicating copy to clipboard operation
nuplan-devkit copied to clipboard

Failed to register worker to Raylet

Open Capchenxi opened this issue 2 years ago • 2 comments

Hello,

I'm runing the "Launch training (within the notebook)" part in nuplan_framework.ipynb, but encounter the error

core_worker.cc:191: Failed to register worker 01000000fffffffffffffffffffffffffffffffffffffffffffff to Raylet. IOError: [RayletClient] Unable to register worker with raylet. No such file or directory.

Any idea on how to solve this? I tried on some ways mentioned the Raylet repo but still got this error when runing the nuplan_framework.ipynb.

Capchenxi avatar Jun 13 '23 01:06 Capchenxi

Hello @Capchenxi,

I had the same error but I was able to fix it, here is what I did.

I checked conda list for grpcio, and realized it was installed with pip.

I uninstalled grpcio using pip uninstall grpcio and reinstalled using conda install grpcio.

Also, try to increase the ulimit -u 127590.

Finally, if this doesn't work try to check the log cat /tmp/ray/session_latest/logs/dashboard_agent.log to have further information.

Hope it helps.

gsg213 avatar Jun 22 '23 13:06 gsg213

Hello @Capchenxi ,

I had the same error. I guess the problem is we did not install ray correctly. I modified the requirements.txt file, changed ray to ray[all] (maybe ray[default] is enough?), and the problem is solved.

mhshen avatar Dec 22 '23 01:12 mhshen