Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4078,7 +4078,7 @@
"type": "object",
"description": "The Spark version of new cluster. Type: string (or Expression with resultType string)."
},
"newClusterNumOfWorker": {
"newClusterNumOfWorker": {
"type": "object",
"description": "Number of worker nodes that new cluster should have. A string formatted Int32, like '1' means numOfWorker is 1 or '1:10' means auto-scale from 1 as min and 10 as max. Type: string (or Expression with resultType string)."
},
Expand All @@ -4087,7 +4087,15 @@
"description": "The node types of new cluster. Type: string (or Expression with resultType string)."
},
"newClusterSparkConf": {
"description": "a set of optional, user-specified Spark configuration key-value pairs.",
"description": "A set of optional, user-specified Spark configuration key-value pairs.",
"type": "object",
"additionalProperties": {
"type": "object",
"description": "Type: string (or Expression with resultType string)."
}
},
"newClusterSparkEnvVars": {
"description": "A set of optional, user-specified Spark environment variables key-value pairs.",
"type": "object",
"additionalProperties": {
"type": "object",
Expand Down