-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SDK Info Exposure Rework (status/details, wait, error-handling, etc.) #33
Comments
Also add a |
Change |
The Ray cluster is missing the status.state ray-project/kuberay#991
The status from a RayCluster shows:
This causes a problem for the codeflare API https://github.com/project-codeflare/codeflare-sdk/blob/main/src/codeflare_sdk/cluster/cluster.py#L428 where it looks for the state causing the cluster to stay as STARTING |
Please ignore my previous comment, it works with the 0.5.0 (I was using 0.4.0 previously) |
Merge both
cluster.status()
andcluster.is_ready()
into one one function (likely still calledstatus
). This will tell the user exactly where in the process of setup their cluster is currently (whether still in AppWrapper stages or in Ray stages). Then, there will be a second function calledcluster.details()
that will output the cluster information like all of the specs, worker count, uri, active/inactive, etc. (what we currently see when callingcluster.status()
on a fully set-up cluster).The text was updated successfully, but these errors were encountered: