Databricks · Schema

ClusterEvent

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

Properties

Name Type Description
cluster_id string
timestamp integer
type string
details object
View JSON Schema on GitHub

JSON Schema

databricks-clusterevent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClusterEvent",
  "title": "ClusterEvent",
  "type": "object",
  "properties": {
    "cluster_id": {
      "type": "string",
      "example": "500123"
    },
    "timestamp": {
      "type": "integer",
      "format": "int64",
      "example": 10
    },
    "type": {
      "type": "string",
      "example": "example_value"
    },
    "details": {
      "type": "object",
      "properties": {
        "current_num_workers": {
          "type": "integer"
        },
        "target_num_workers": {
          "type": "integer"
        },
        "previous_attributes": {
          "type": "object"
        },
        "attributes": {
          "type": "object"
        },
        "previous_cluster_size": {
          "type": "object"
        },
        "cluster_size": {
          "type": "object"
        },
        "cause": {
          "type": "string"
        },
        "reason": {
          "type": "object",
          "properties": {
            "code": {
              "type": "string"
            },
            "type": {
              "type": "string"
            },
            "parameters": {
              "type": "object",
              "additionalProperties": {
                "type": "string"
              }
            }
          }
        }
      },
      "example": "example_value"
    }
  }
}