Skip to content
Sheetwrite

Sheetwrite / Documentation

SyncPendingQueueLimits@sheetwrite/core

Aggregate ceilings for local commits retained until durable acknowledgement.

Aggregate ceilings for local commits retained until durable acknowledgement.

Members 3

maxPendingCommits Pending local commits, including synchronous reservations; defaults to 10,000.
maxPendingCommits: number;
maxPendingOperations Aggregate DocumentOp count across pending commits; defaults to 100,000.
maxPendingOperations: number;
maxPendingEncodedBytes Aggregate UTF-8 bytes across pending operation arrays; defaults to 128 MiB.
maxPendingEncodedBytes: number;

Declaration

View full TypeScript declaration
export interface SyncPendingQueueLimits {
maxPendingCommits: number;
maxPendingOperations: number;
maxPendingEncodedBytes: number;
}