Azure Databricks · Schema

NodeType

AnalyticsApache SparkBig DataData EngineeringMachine Learning

Properties

Name Type Description
node_type_id string Unique identifier for the node type
memory_mb integer Memory in megabytes
num_cores number Number of CPU cores
description string Human-readable description
instance_type_id string Azure instance type identifier
is_deprecated boolean Whether the node type is deprecated
num_gpus integer Number of GPUs available
category string Category of the node type (General Purpose, Memory Optimized, etc.)
View JSON Schema on GitHub

JSON Schema

azure-databricks-node-type-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "NodeType",
  "type": "object",
  "properties": {
    "node_type_id": {
      "type": "string",
      "description": "Unique identifier for the node type"
    },
    "memory_mb": {
      "type": "integer",
      "description": "Memory in megabytes"
    },
    "num_cores": {
      "type": "number",
      "description": "Number of CPU cores"
    },
    "description": {
      "type": "string",
      "description": "Human-readable description"
    },
    "instance_type_id": {
      "type": "string",
      "description": "Azure instance type identifier"
    },
    "is_deprecated": {
      "type": "boolean",
      "description": "Whether the node type is deprecated"
    },
    "num_gpus": {
      "type": "integer",
      "description": "Number of GPUs available"
    },
    "category": {
      "type": "string",
      "description": "Category of the node type (General Purpose, Memory Optimized, etc.)"
    }
  }
}