Azure Databricks · Schema

RunState

AnalyticsApache SparkBig DataData EngineeringMachine Learning

Properties

Name Type Description
life_cycle_state string Life cycle state of the run
result_state string Result state of the run (available after completion)
state_message string Descriptive message for the current state
user_cancelled_or_timedout boolean Whether the run was cancelled by a user or timed out
View JSON Schema on GitHub

JSON Schema

azure-databricks-run-state-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "RunState",
  "type": "object",
  "properties": {
    "life_cycle_state": {
      "type": "string",
      "description": "Life cycle state of the run"
    },
    "result_state": {
      "type": "string",
      "description": "Result state of the run (available after completion)"
    },
    "state_message": {
      "type": "string",
      "description": "Descriptive message for the current state"
    },
    "user_cancelled_or_timedout": {
      "type": "boolean",
      "description": "Whether the run was cancelled by a user or timed out"
    }
  }
}