Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

StreamingOperationalLimits

import type { StreamingOperationalLimits } from "https://googleapis.deno.dev/v1/dataflow:v1b3.ts";

Operational limits imposed on streaming jobs by the backend.

interface StreamingOperationalLimits {
maxBagElementBytes?: bigint;
maxGlobalDataBytes?: bigint;
maxKeyBytes?: bigint;
maxProductionOutputBytes?: bigint;
maxSortedListElementBytes?: bigint;
maxSourceStateBytes?: bigint;
maxTagBytes?: bigint;
maxValueBytes?: bigint;
}

§Properties

§
maxBagElementBytes?: bigint
[src]

The maximum size for an element in bag state.

§
maxGlobalDataBytes?: bigint
[src]

The maximum size for an element in global data.

§
maxKeyBytes?: bigint
[src]

The maximum size allowed for a key.

§
maxProductionOutputBytes?: bigint
[src]

The maximum size for a single output element.

§
maxSortedListElementBytes?: bigint
[src]

The maximum size for an element in sorted list state.

§
maxSourceStateBytes?: bigint
[src]

The maximum size for a source state update.

§
maxTagBytes?: bigint
[src]

The maximum size for a state tag.

§
maxValueBytes?: bigint
[src]

The maximum size for a value state field.