Databricks SDK for JavaScript
    Preparing search index...

    Describes a specific Spark driver or executor.

    interface SparkInfo_SparkNode {
        hostPrivateIp?: string;
        instanceId?: string;
        nodeAwsAttributes?: SparkInfo_SparkNode_SparkNodeAwsAttributes;
        nodeId?: string;
        privateIp?: string;
        publicDns?: string;
        startTimestamp?: bigint;
    }
    Index

    Properties

    hostPrivateIp?: string

    The private IP address of the host instance.

    instanceId?: string

    Globally unique identifier for the host instance from the cloud provider.

    Attributes specific to AWS for a Spark node.

    nodeId?: string

    Globally unique identifier for this node.

    privateIp?: string

    Private IP address (typically a 10.x.x.x address) of the Spark node. Note that this is different from the private IP address of the host instance.

    publicDns?: string

    Public DNS address of this node. This address can be used to access the Spark JDBC server on the driver node. To communicate with the JDBC server, traffic must be manually authorized by adding security group rules to the "worker-unmanaged" security group via the AWS console.

    startTimestamp?: bigint

    The timestamp (in millisecond) when the Spark node is launched.