create_cluster
Set up a new Databricks cluster by defining its name, Spark version, node type, and worker count, enabling execution of data processing workflows.
Instructions
Create a new Databricks cluster
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cluster_name | Yes | ||
node_type_id | Yes | ||
num_workers | No | ||
spark_version | Yes |
Input Schema (JSON Schema)
{
"properties": {
"cluster_name": {
"title": "Cluster Name",
"type": "string"
},
"node_type_id": {
"title": "Node Type Id",
"type": "string"
},
"num_workers": {
"default": 1,
"title": "Num Workers",
"type": "integer"
},
"spark_version": {
"title": "Spark Version",
"type": "string"
}
},
"required": [
"cluster_name",
"spark_version",
"node_type_id"
],
"title": "create_clusterArguments",
"type": "object"
}