hey team, <Ray and Flyte: Distributed Computing an...
# ray-integration
b
hey team, Ray and Flyte: Distributed Computing and Orchestration in this documentation it is written that
Flyte starts a Ray dashboard by default that provides cluster metrics and logs across many machines in a single pane as well as Ray memory utilization while debugging memory errors. The dashboard helps Ray users understand Ray clusters and libraries.
But i dont see ray dashboard i just see flyte console
g
You need to separately port forward to it, it should have a k8s service in whichever namespace its running
b
So does it not run in the demo cluster?
t
cc @glamorous-carpet-83516
g
yes, you can run ray task in the demo cluster, but you need to port-forward the ray service. kuberay won’t create an ingress for you, so you can only connect the dashboard through k8s service.
b
Hey @glamorous-carpet-83516 i am not able to find ray service i can just see all pods
h
While the task is running, can you run:
kubectl get svc -A
? and post the output here
b
h
This is odd... Can you check on two things for me plz: 1. I want to make sure the task actually ran using Ray operator, can you confirm that? maybe run
kubectl get rayjob -A
while the task is running 2. Can you confirm the version of Ray operator you are running?
b
Ray operator version:
kuberay/operator:v0.3.0
👀 1
@high-park-82026
h
I see, @brash-piano-42461 It doesn't look like Ray plugin is enabled... Have you followed the steps here: https://docs.flyte.org/en/latest/deployment/plugins/k8s/index.html? particularly the config:
Copy code
tasks:
  task-plugins:
    default-for-task-types:
      container: container
      container_array: k8s-array
      sidecar: sidecar
      ray: ray
    enabled-plugins:
    - container
    - k8s-array
    - sidecar
    - ray
b
ya it is enabled