Properties
| Name | Type | Description |
|---|---|---|
| run_id | integer | Canonical identifier of the run |
| job_id | integer | ID of the job this run belongs to |
| run_name | string | Name of the run |
| creator_user_name | string | Username of the user who triggered the run |
| number_in_job | integer | Sequence number of this run among all runs of the job |
| tasks | array | |
| cluster_spec | object | |
| cluster_instance | object | |
| start_time | integer | Start time of the run (epoch milliseconds) |
| setup_duration | integer | Time spent setting up the cluster in milliseconds |
| execution_duration | integer | Time spent executing the run in milliseconds |
| cleanup_duration | integer | Time spent cleaning up after the run in milliseconds |
| end_time | integer | End time of the run (epoch milliseconds) |
| trigger | string | What triggered this run |
| run_type | string | |
| attempt_number | integer | Current attempt number of the run |
| run_page_url | string | URL of the run page in the Databricks UI |
| format | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Run",
"type": "object",
"properties": {
"run_id": {
"type": "integer",
"description": "Canonical identifier of the run"
},
"job_id": {
"type": "integer",
"description": "ID of the job this run belongs to"
},
"run_name": {
"type": "string",
"description": "Name of the run"
},
"creator_user_name": {
"type": "string",
"description": "Username of the user who triggered the run"
},
"number_in_job": {
"type": "integer",
"description": "Sequence number of this run among all runs of the job"
},
"tasks": {
"type": "array"
},
"cluster_spec": {
"type": "object"
},
"cluster_instance": {
"type": "object"
},
"start_time": {
"type": "integer",
"description": "Start time of the run (epoch milliseconds)"
},
"setup_duration": {
"type": "integer",
"description": "Time spent setting up the cluster in milliseconds"
},
"execution_duration": {
"type": "integer",
"description": "Time spent executing the run in milliseconds"
},
"cleanup_duration": {
"type": "integer",
"description": "Time spent cleaning up after the run in milliseconds"
},
"end_time": {
"type": "integer",
"description": "End time of the run (epoch milliseconds)"
},
"trigger": {
"type": "string",
"description": "What triggered this run"
},
"run_type": {
"type": "string"
},
"attempt_number": {
"type": "integer",
"description": "Current attempt number of the run"
},
"run_page_url": {
"type": "string",
"description": "URL of the run page in the Databricks UI"
},
"format": {
"type": "string"
}
}
}