Member Junction
    Preparing search index...

    Aggregate result of a RunAdaptive pass over a batch of items.

    interface AdaptiveRunResult {
        failed: number;
        finalCap: number;
        peakInFlight: number;
        processed: number;
        succeeded: number;
        throttled: number;
    }
    Index

    Properties

    failed: number

    Number of items whose outcome reported ok: false (errors, including throttles).

    finalCap: number

    The cap value at the end of the run (where AIMD converged for this batch).

    peakInFlight: number

    The highest number of fn invocations observed in flight at once during the run.

    processed: number

    Total items processed (always equals items.length).

    succeeded: number

    Number of items whose outcome reported ok: true.

    throttled: number

    Number of outcomes that reported throttled: true.