Skip to content
This repository was archived by the owner on Mar 28, 2025. It is now read-only.

Latest commit

 

History

History
46 lines (27 loc) · 1.28 KB

File metadata and controls

46 lines (27 loc) · 1.28 KB

Databricks::Clusters::Cluster Autoscale

Range defining the min and max number of cluster workers

Syntax

To declare this entity in your AWS CloudFormation template, use the following syntax:

JSON

{
    "MinWorkers" : Integer,
    "MaxWorkers" : Integer
}

YAML

MinWorkers: Integer
MaxWorkers: Integer

Properties

MinWorkers

The minimum number of workers to which the cluster can scale down when underutilized. It is also the initial number of workers the cluster will have after creation.

Required: Yes

Type: Integer

Update requires: No interruption

MaxWorkers

The maximum number of workers to which the cluster can scale up when overloaded. max_workers must be strictly greater than min_workers.

Required: Yes

Type: Integer

Update requires: No interruption