drupflare/worker - v1.0.0
    Preparing search index...

    Type Alias Amplification

    One table's charged rows against the statements that caused them.

    type Amplification = {
        factor: number;
        rowsWritten: number;
        statements: number;
        table: string;
    }
    Index
    factor: number

    charged rows per statement.

    Above 1 means something other than the row itself is being billed, and on DO SQLite that something is index maintenance: every index on a table is another row written per insert.

    rowsWritten: number

    rows the host CHARGED for those statements

    statements: number

    write statements aimed at this table, including no-ops

    table: string