Added option to expose GCS ports to the local (requestor) machine.
Notable remarks:
ray status --address=localhost:6379 can check cluster state by using the exposed GCS port (which has binary payloads)
ray job submit --address http://localhost:8265 --working-dir . -- python calculate.py can submit the job by using the ray dashboard command (which has http payloads)
What I've done:
Notable remarks:
ray status --address=localhost:6379
can check cluster state by using the exposed GCS port (which has binary payloads)ray job submit --address http://localhost:8265 --working-dir . -- python calculate.py
can submit the job by using theray dashboard
command (which has http payloads)