Databricks SDK for JavaScript
    Preparing search index...

    Variable InitScriptExecutionDetails_InitScriptExecutionStatusConst

    InitScriptExecutionDetails_InitScriptExecutionStatus: {
        FAILED_EXECUTION: "FAILED_EXECUTION";
        FAILED_FETCH: "FAILED_FETCH";
        FUSE_MOUNT_FAILED: "FUSE_MOUNT_FAILED";
        NOT_EXECUTED: "NOT_EXECUTED";
        SKIPPED: "SKIPPED";
        SUCCEEDED: "SUCCEEDED";
        UNKNOWN: "UNKNOWN";
    } = ...

    Result of attempted script execution

    Type Declaration

    • ReadonlyFAILED_EXECUTION: "FAILED_EXECUTION"

      The script returned a non-zero exit code after execution

    • ReadonlyFAILED_FETCH: "FAILED_FETCH"

      The NodeDaemon failed to fetch the script

    • ReadonlyFUSE_MOUNT_FAILED: "FUSE_MOUNT_FAILED"

      For FUSE mount init scripts (WSFS & Volumes): the fuse mounting was unsuccessful

    • ReadonlyNOT_EXECUTED: "NOT_EXECUTED"

      The script was successfully fetched but was not executed

    • ReadonlySKIPPED: "SKIPPED"

      The NodeDaemon failed to fetch the script, and the script was skippable (i.e. skip_if_fetch_fails was true) so it was skipped without triggering any errors.

    • ReadonlySUCCEEDED: "SUCCEEDED"

      The script was successfully executed

    • ReadonlyUNKNOWN: "UNKNOWN"

      The script's execution status is unknown