LinkedServiceAzureDatabricksInstancePool

data class LinkedServiceAzureDatabricksInstancePool(val clusterVersion: String, val instancePoolId: String, val maxNumberOfWorkers: Int? = null, val minNumberOfWorkers: Int? = null)

Constructors

Link copied to clipboard
constructor(clusterVersion: String, instancePoolId: String, maxNumberOfWorkers: Int? = null, minNumberOfWorkers: Int? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Spark version of a the cluster.

Link copied to clipboard

Identifier of the instance pool within the linked ADB instance.

Link copied to clipboard
val maxNumberOfWorkers: Int? = null

The max number of worker nodes. Set this value if you want to enable autoscaling between the min_number_of_workers and this value. Omit this value to use a fixed number of workers defined in the min_number_of_workers property.

Link copied to clipboard
val minNumberOfWorkers: Int? = null

The minimum number of worker nodes. Defaults to 1.