Azure Databricks · Schema

AutoScale

AnalyticsApache SparkBig DataData EngineeringMachine Learning

Properties

Name Type Description
min_workers integer Minimum number of workers
max_workers integer Maximum number of workers
View JSON Schema on GitHub

JSON Schema

microsoft-azure-databricks-autoscale-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AutoScale",
  "title": "AutoScale",
  "type": "object",
  "properties": {
    "min_workers": {
      "type": "integer",
      "format": "int32",
      "description": "Minimum number of workers",
      "example": 10
    },
    "max_workers": {
      "type": "integer",
      "format": "int32",
      "description": "Maximum number of workers",
      "example": 10
    }
  },
  "required": [
    "min_workers",
    "max_workers"
  ]
}