-
Notifications
You must be signed in to change notification settings - Fork 6.2k
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
[Feedback] Feedback for ray + uv #50961
Comments
Hey ya'll! Would be great to have some more formal docs or guide to get this working besides the blog post. I don't know how to use our current JobConfig + anyscale.job.submit workflow with this new method |
@cabreraalex Thanks for your feedback, I'm currently working on the anyscale.job.submit workflow and will update here after that's deployed. And yes you are right, we also need to work on more formal docs 👍 |
Hi. The
|
@cabreraalex In the latest release 0.26.4 of the anyscale CLI (https://pypi.org/project/anyscale/), the py_executable support is now implemented for JobConfig and the job submit workflow. You need a cluster image that has UV installed and also unsets FROM anyscale/ray:2.43.0-slim-py312-cu125
RUN curl -LsSf https://astral.sh/uv/install.sh | sh
RUN echo "unset RAY_RUNTIME_ENV_HOOK" >> /home/ray/.bashrc and then you can e.g. use it like the following -- create a working_dir with the following files: main.py import ray
@ray.remote
def f():
import emoji
return emoji.emojize("Python rocks :thumbs_up:")
print(ray.get(f.remote())) pyproject.toml
job.yaml
And submit your job with import anyscale
from anyscale.job.models import JobConfig
config = JobConfig(
name="my-job",
entrypoint="uv run main.py",
working_dir=".",
max_retries=0,
image_uri="<your image here>",
py_executable="uv run",
)
anyscale.job.submit(config) |
Fantastic, will test it out, thanks! |
Just found out this ticket. I opened two tickets which related with uv |
I'm also getting a |
I have some issues using uv on a remote cluster: |
currently in the process of trying to use this.
and I start serve with Unfortunately it seems like it spends too much time redownloading / building deps, and ray eventually just decides to restart the raylet (causing an endless loop) or force-kills the worker causing it to crash. |
Thanks for writing such an awesome feature!
Also, as a general feedback, could the ray logger log the dependencies all the workers ended up using assuming back on the driver assuming they can each run with a different |
Would it be possible to show the output of uv when submitting a job? Currently I'm just seeing:
and it's been stuck like that for a while; not sure if it's doing anything or if it's working on installing dependencies. EDIT: it was taking a long time because I tried to be fancy and set the UV_CACHE_DIR to an EFS dir, which was really slow. I removed that and it was much faster |
I've also noticed that when |
@pcmoritz Hm it seems like it's re-installing all dependencies each time a worker is invoked. Is there some way to avoid that? I'm also getting errors that its failing, like:
EDIT: I added |
When using the following runtime_env = {
'uv': 'requirements.txt',
}
run.init('address', runtime_env=runtime_env) I get this error from an overly long file name
|
Hi everyone! Thanks for your feedback. We're going to start going through the issues listed. |
Opened an issue asking for |
We just released https://github.com/ray-project/ray/releases/tag/ray-2.44.0, which makes it possible to use the UV hook with Job submission (#51150), so you don't need to fall back to py_executable for job submission any more :) |
In the latest master, uv run can now be used with the Ray Client too: #51683 :) |
Hello... I opened an issue reporting an error on running ray job submit #51777 |
A community member opened this ticket for uv + Kuberay + Ray and am cross posting here for visibility since it is in a different repo. |
Hello everyone! As of Ray 2.43.0, we have launched a new integration with
uv run
that we are super excited to share with you all. This will serve as the main Github issue to track any issues or feedback that ya'll might have while using this.Please share any success stories, configs, or just cool discoveries that you might have while running uv + Ray! We are excited to hear from you.
To read more about uv + Ray, check out our new blog post here.
The text was updated successfully, but these errors were encountered: