Member Junction
    Preparing search index...

    Interface PredictiveStudioRunFeaturePipelineOutput

    Output of PredictiveStudio.RunFeaturePipeline — the underlying Record Process run summary.

    interface PredictiveStudioRunFeaturePipelineOutput {
        error: number;
        errorMessage?: string;
        processed: number;
        processRunID?: string;
        skipped: number;
        status: string;
        written: number;
    }
    Index

    Properties

    error: number

    Records that errored.

    errorMessage?: string

    Run-level error detail when status is not Completed.

    processed: number

    Records the run touched.

    processRunID?: string

    Id of the persisted MJ: Process Runs row produced by the underlying Record Process.

    skipped: number

    Records skipped (no rule matched / nothing changed).

    status: string

    Run-level status (Completed / Failed / Cancelled / …).

    written: number

    Records whose features were written back (0 in dry-run).