Download OpenAPI specification:Download
This is the specification for the Ray Jobs REST API. See the Ray Jobs documentation for details: https://docs.ray.io/en/latest/cluster/running-applications/job-submission/index.html
Submit a job to the cluster.
The job to submit.
entrypoint required | string Command to start execution, ex: 'python script.py' |
submission_id | string Optional submission_id to specify for the job. |
job_id | string Deprecated Optional job_id to specify for the job. |
runtime_env | object The runtime environment for the job. |
object Arbitrary user-provided metadata for the job. | |
entrypoint_num_cpus | number Number of CPUs to allocate for the execution of the entrypoint command, separately from any Ray tasks or actors that are created by it. |
entrypoint_num_gpus | number Number of GPUs to allocate for the execution of the entrypoint command, separately from any Ray tasks or actors that are created by it. |
entrypoint_memory | integer The quantity of memory to reserve for the execution of the entrypoint command, separately from any tasks or actors launched by it. |
object The quantity of various custom resources to allocate for the execution of the entrypoint command, separately from any Ray tasks or actors that are created by it. |
{- "entrypoint": "string",
- "submission_id": "string",
- "job_id": "string",
- "runtime_env": { },
- "metadata": {
- "property1": "string",
- "property2": "string"
}, - "entrypoint_num_cpus": 0,
- "entrypoint_num_gpus": 0,
- "entrypoint_memory": 0,
- "entrypoint_resources": {
- "property1": 0,
- "property2": 0
}
}
{- "job_id": "string",
- "submission_id": "string"
}
[- {
- "type": "SUBMISSION",
- "entrypoint": "string",
- "job_id": "string",
- "submission_id": "string",
- "driver_info": {
- "id": "string",
- "node_ip_address": "string",
- "pid": "string"
}, - "status": "PENDING",
- "message": "string",
- "error_type": "string",
- "start_time": 0,
- "end_time": 0,
- "metadata": {
- "property1": "string",
- "property2": "string"
}, - "runtime_env": { },
- "driver_agent_http_address": "string",
- "driver_node_id": "string"
}
]
Get the status and details of a job.
submission_id required | string The ID of the job to get the status and details of. |
{- "type": "SUBMISSION",
- "entrypoint": "string",
- "job_id": "string",
- "submission_id": "string",
- "driver_info": {
- "id": "string",
- "node_ip_address": "string",
- "pid": "string"
}, - "status": "PENDING",
- "message": "string",
- "error_type": "string",
- "start_time": 0,
- "end_time": 0,
- "metadata": {
- "property1": "string",
- "property2": "string"
}, - "runtime_env": { },
- "driver_agent_http_address": "string",
- "driver_node_id": "string"
}
WebSocket endpoint for tailing the logs of a job (Not documented in OpenAPI, see https://docs.ray.io/en/latest/_modules/ray/dashboard/modules/job/sdk.html#JobSubmissionClient.tail_job_logs for example usage).
submission_id required | string The ID of the job to tail the logs of. |