@triply/triplydb
    Preparing search index...

    Type Alias PipelineProgress

    How far a running pipeline has got, as handed to the onProgress callback.

    defaultLogger prints one of these; pass it to onProgress if the default format suits.

    type PipelineProgress = {
        finished: PipelineJob[];
        pending: PipelineJob[];
        progress: number;
        running: PipelineJob[];
        status: PipelineInfo["status"];
    }
    Index
    finished: PipelineJob[]

    Queries that completed successfully. Failed and cancelled ones appear in none of the three.

    pending: PipelineJob[]

    Queries not started yet.

    progress: number

    How far along the pipeline is, from 0 to 1.

    running: PipelineJob[]

    Queries running now, each with its own progress.

    Where the run has got to, the same value Pipeline.getInfo reports.