Databricks SDK for JavaScript
    Preparing search index...

    Attributes set during instance pool creation which are related to GCP.

    interface InstancePoolGcpAttributes {
        gcpAvailability?: GcpAvailability;
        localSsdCount?: number;
        zoneId?: string;
    }
    Index

    Properties

    gcpAvailability?: GcpAvailability
    localSsdCount?: number

    If provided, each node in the instance pool will have this number of local SSDs attached. Each local SSD is 375GB in size. Refer to GCP documentation for the supported number of local SSDs for each instance type.

    zoneId?: string

    Identifier for the availability zone/datacenter in which the cluster resides. This string will be of a form like "us-west1-a". The provided availability zone must be in the same region as the workspace. For example, "us-west1-a" is not a valid zone id if the workspace resides in the "us-east1" region. This is an optional field at instance pool creation, and if not specified, a default zone will be used.

    This field can be one of the following:

    • "HA" => High availability, spread nodes across availability zones for a deployment region
    • A GCP availability zone => Pick One of the available zones for (machine type + region) from https://cloud.google.com/compute/docs/regions-zones (e.g. "us-west1-a").

    If empty, picks an availability zone to schedule the cluster on.