ray.job_submission.DriverInfo#

pydantic model ray.job_submission.DriverInfo[source]#

A class for recording information about the driver related to the job.

PublicAPI (beta): This API is in beta and may change before becoming stable.

Show JSON schema
{
   "title": "DriverInfo",
   "description": "A class for recording information about the driver related to the job.\n\n**PublicAPI (beta):** This API is in beta and may change before becoming stable.",
   "type": "object",
   "properties": {
      "id": {
         "title": "Id",
         "description": "The id of the driver",
         "type": "string"
      },
      "node_ip_address": {
         "title": "Node Ip Address",
         "description": "The IP address of the node the driver is running on.",
         "type": "string"
      },
      "pid": {
         "title": "Pid",
         "description": "The PID of the worker process the driver is using.",
         "type": "string"
      }
   },
   "required": [
      "id",
      "node_ip_address",
      "pid"
   ]
}

Fields:
  • id (str)

  • node_ip_address (str)

  • pid (str)

field id: str [Required]#

The id of the driver

field node_ip_address: str [Required]#

The IP address of the node the driver is running on.

field pid: str [Required]#

The PID of the worker process the driver is using.