Databricks SDK for JavaScript
    Preparing search index...

    Metadata of a single run.

    interface RunInfo {
        artifactUri?: string;
        endTime?: bigint;
        experimentId?: string;
        lifecycleStage?: string;
        runId?: string;
        runName?: string;
        runUuid?: string;
        startTime?: bigint;
        status?: RunStatus;
        userId?: string;
    }
    Index

    Properties

    artifactUri?: string

    URI of the directory where artifacts should be uploaded. This can be a local path (starting with "/"), or a distributed file system (DFS) path, like s3://bucket/directory or dbfs:/my/directory. If not set, the local ./mlruns directory is chosen.

    endTime?: bigint

    Unix timestamp of when the run ended in milliseconds.

    experimentId?: string

    The experiment ID.

    lifecycleStage?: string

    Current life cycle stage of the experiment : OneOf("active", "deleted")

    runId?: string

    Unique identifier for the run.

    runName?: string

    The name of the run.

    runUuid?: string

    [Deprecated, use run_id instead] Unique identifier for the run. This field will be removed in a future MLflow version.

    startTime?: bigint

    Unix timestamp of when the run started in milliseconds.

    status?: RunStatus

    Current status of the run.

    userId?: string

    User who initiated the run. This field is deprecated as of MLflow 1.0, and will be removed in a future MLflow release. Use 'mlflow.user' tag instead.