Databricks SDK for JavaScript
    Preparing search index...
    interface EventDetails {
        attributes?: ClusterAttributes;
        cause?: ResizeCause_ResizeCause;
        clusterSize?: ClusterSize;
        currentNumVcpus?: number;
        currentNumWorkers?: number;
        didNotExpandReason?: string;
        diskSize?: bigint;
        driverStateMessage?: string;
        enableTerminationForNodeBlocklisted?: boolean;
        freeSpace?: bigint;
        initScripts?: InitScriptEventDetails;
        instanceId?: string;
        jobRunName?: string;
        previousAttributes?: ClusterAttributes;
        previousClusterSize?: ClusterSize;
        previousDiskSize?: bigint;
        reason?: TerminationReason;
        targetNumVcpus?: number;
        targetNumWorkers?: number;
        user?: string;
    }
    Index

    Properties

    attributes?: ClusterAttributes
    • For created clusters, the attributes of the cluster.
    • For edited clusters, the new attributes of the cluster.

    The cause of a change in target size.

    clusterSize?: ClusterSize

    The actual cluster size that was set in the cluster creation or edit.

    currentNumVcpus?: number

    The current number of vCPUs in the cluster.

    currentNumWorkers?: number

    The current number of nodes in the cluster.

    didNotExpandReason?: string
    diskSize?: bigint

    Current disk size in bytes

    driverStateMessage?: string

    More details about the change in driver's state

    enableTerminationForNodeBlocklisted?: boolean

    Whether or not a blocklisted node should be terminated. For ClusterEventType NODE_BLACKLISTED.

    freeSpace?: bigint

    List of global and cluster init scripts associated with this cluster event.

    instanceId?: string

    Instance Id where the event originated from

    jobRunName?: string

    Unique identifier of the specific job run associated with this cluster event

    • For clusters created for jobs, this will be the same as the cluster name
    previousAttributes?: ClusterAttributes

    The cluster attributes before a cluster was edited.

    previousClusterSize?: ClusterSize

    The size of the cluster before an edit or resize.

    previousDiskSize?: bigint

    Previous disk size in bytes

    A termination reason:

    • On a TERMINATED event, this is the reason of the termination.
    • On a RESIZE_COMPLETE event, this indicates the reason that we failed to acquire some nodes.
    targetNumVcpus?: number

    The targeted number of vCPUs in the cluster.

    targetNumWorkers?: number

    The targeted number of nodes in the cluster.

    user?: string

    The user that caused the event to occur. (Empty if it was done by the control plane.)