How severe does this issue affect your experience of using Ray?
- High: It blocks me to complete my task.
(I am using ray 2.2.0)
Hi. I am quite new to ray and am setting up a first ray entrypoint. I have created a docker image with a conda environement installed in it that I want to activate when I submit my jobs through the JobSubmissionClient. When I do this my job gets stuck on PENDING and never starts. I think this is because of mismatching python/ray version between the cluster and my local machine, because the documentation states:
" conda
environments must have the same Python version as the Ray cluster. Do not list ray
in the conda
dependencies, as it will be automatically installed."
(Environment Dependencies — Ray 2.2.0)
I am launching the job from the same environment I want to run on the cluster but this do not work. When the documentation here states the “cluster” do they refer to what is installed outside of conda, in the conda base environement or the environment I want to run?