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

StragglerSummary

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

Summarized straggler identification details.

interface StragglerSummary {
recentStragglers?: Straggler[];
stragglerCauseCount?: {
[key: string]: bigint;
}
;
totalStragglerCount?: bigint;
}

§Properties

§
recentStragglers?: Straggler[]
[src]

The most recent stragglers.

§
stragglerCauseCount?: {
[key: string]: bigint;
}
[src]

Aggregated counts of straggler causes, keyed by the string representation of the StragglerCause enum.

§
totalStragglerCount?: bigint
[src]

The total count of stragglers.