Databricks · Schema

Run

AIAnalyticsApache SparkBig DataClean RoomsCloud ComputingDataData AnalyticsData EngineeringData GovernanceDelta LakeDelta SharingETLIdentity ManagementLakehouseMachine LearningMLflowModel ServingSecuritySQLUnity CatalogVector SearchVisualize

Properties

Name Type Description
job_id integer
run_id integer The canonical identifier of the run.
run_name string
number_in_job integer
original_attempt_run_id integer
state object
tasks array
job_clusters array
cluster_spec object
cluster_instance object
start_time integer The start time of the run in epoch milliseconds.
setup_duration integer Setup duration in milliseconds.
execution_duration integer Execution duration in milliseconds.
cleanup_duration integer Cleanup duration in milliseconds.
end_time integer End time in epoch milliseconds.
trigger string
run_type string
attempt_number integer
creator_user_name string
run_page_url string URL of the run page in the Databricks workspace.
format string
View JSON Schema on GitHub

JSON Schema

databricks-run-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Run",
  "type": "object",
  "properties": {
    "job_id": {
      "type": "integer"
    },
    "run_id": {
      "type": "integer",
      "description": "The canonical identifier of the run."
    },
    "run_name": {
      "type": "string"
    },
    "number_in_job": {
      "type": "integer"
    },
    "original_attempt_run_id": {
      "type": "integer"
    },
    "state": {
      "type": "object"
    },
    "tasks": {
      "type": "array"
    },
    "job_clusters": {
      "type": "array"
    },
    "cluster_spec": {
      "type": "object"
    },
    "cluster_instance": {
      "type": "object"
    },
    "start_time": {
      "type": "integer",
      "description": "The start time of the run in epoch milliseconds."
    },
    "setup_duration": {
      "type": "integer",
      "description": "Setup duration in milliseconds."
    },
    "execution_duration": {
      "type": "integer",
      "description": "Execution duration in milliseconds."
    },
    "cleanup_duration": {
      "type": "integer",
      "description": "Cleanup duration in milliseconds."
    },
    "end_time": {
      "type": "integer",
      "description": "End time in epoch milliseconds."
    },
    "trigger": {
      "type": "string"
    },
    "run_type": {
      "type": "string"
    },
    "attempt_number": {
      "type": "integer"
    },
    "creator_user_name": {
      "type": "string"
    },
    "run_page_url": {
      "type": "string",
      "description": "URL of the run page in the Databricks workspace."
    },
    "format": {
      "type": "string"
    }
  }
}