@earth-app/collegedb
    Preparing search index...

    Interface RebalanceResult

    Outcome of a rebalance pass.

    1.4.0

    interface RebalanceResult {
        agreed: number;
        examined: number;
        failed: { error: string; key: string }[];
        moved: number;
    }
    Index
    agreed: number

    Keys whose stored shard already matched their computed shard

    examined: number

    Keys examined

    failed: { error: string; key: string }[]

    Keys that could not be moved, with the reason

    moved: number

    Keys moved onto their computed shard