SongGuess
    Preparing search index...
    interface D1Meta {
        changed_db: boolean;
        changes: number;
        duration: number;
        last_row_id: number;
        rows_read: number;
        rows_written: number;
        served_by_colo?: string;
        served_by_primary?: boolean;
        served_by_region?: string;
        size_after: number;
        timings?: { sql_duration_ms: number };
        total_attempts?: number;
    }
    Index

    Properties

    changed_db: boolean
    changes: number
    duration: number
    last_row_id: number
    rows_read: number
    rows_written: number
    served_by_colo?: string

    The three letters airport code of the colo that executed the query.

    served_by_primary?: boolean

    True if-and-only-if the database instance that executed the query was the primary.

    served_by_region?: string

    The region of the database instance that executed the query.

    size_after: number
    timings?: { sql_duration_ms: number }

    Type Declaration

    • sql_duration_ms: number

      The duration of the SQL query execution by the database instance. It doesn't include any network time.

    total_attempts?: number

    Number of total attempts to execute the query, due to automatic retries. Note: All other fields in the response like timings only apply to the last attempt.