Databricks SDK for JavaScript
    Preparing search index...

    Interface AiRuntimeTaskOutput

    AiRuntimeTaskOutput: output identifiers for an AiRuntimeTask run — the MLflow experiment and run IDs the task wrote to.

    Run lifecycle and termination status are not on this message; they live on the surrounding RunTask.status field (see runs.proto:RunTask.status).

    interface AiRuntimeTaskOutput {
        mlflowExperimentId?: string;
        mlflowRunId?: string;
        statusMessage?: string;
    }
    Index

    Properties

    mlflowExperimentId?: string

    MLflow experiment ID the run was logged to. Use it to look up the experiment in MLflow APIs or the workspace MLflow UI.

    mlflowRunId?: string

    MLflow run ID for this task execution. Use it to look up the run in MLflow APIs or the workspace MLflow UI.

    statusMessage?: string

    Human-readable status message for this run, suitable for display to the user (for example, that the run is still waiting for GPU compute). Set by the server only when there is something to surface; empty otherwise.