ray.util.state.common.JobState#
- class ray.util.state.common.JobState(*, type: JobType, job_id: str | None = None, submission_id: str | None = None, driver_info: DriverInfo | None = None, status: JobStatus, entrypoint: str, message: str | None = None, error_type: str | None = None, start_time: int | None = None, end_time: int | None = None, metadata: Dict[str, str] | None = None, runtime_env: Dict[str, Any] | None = None, driver_agent_http_address: str | None = None, driver_node_id: str | None = None, driver_exit_code: int | None = None)[source]#
Bases:
StateSchema
,JobDetails
The state of the job that’s submitted by Ray’s Job APIs or driver jobs
Below columns can be used for the
--filter
option.type
submission_id
status
job_id
Below columns are available only when
get
API is used,--detail
is specified through CLI, ordetail=True
is given to Python APIs.start_time
metadata
type
driver_node_id
message
job_id
entrypoint
driver_exit_code
driver_info
submission_id
status
driver_agent_http_address
runtime_env
error_type
end_time