Azure Synapse Analytics · Schema
BigDataPool
An Apache Spark pool resource.
AnalyticsApache SparkBig DataData WarehouseETLSQL
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| location | string | |
| properties | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/azure-synapse/refs/heads/main/json-schema/azure-synapse-big-data-pool-schema.json",
"title": "BigDataPool",
"description": "An Apache Spark pool resource.",
"type": "object",
"properties": {
"id": {
"type": "string",
"readOnly": true
},
"name": {
"type": "string",
"readOnly": true
},
"location": {
"type": "string"
},
"properties": {
"type": "object",
"properties": {
"provisioningState": {
"type": "string",
"readOnly": true
},
"nodeCount": {
"type": "integer"
},
"nodeSize": {
"type": "string",
"enum": [
"Small",
"Medium",
"Large",
"XLarge",
"XXLarge",
"XXXLarge"
]
},
"sparkVersion": {
"type": "string"
},
"autoScaleProperties": {
"type": "object",
"properties": {
"minNodeCount": {
"type": "integer"
},
"maxNodeCount": {
"type": "integer"
},
"enabled": {
"type": "boolean"
}
}
}
}
}
}
}