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

SourceMetadata

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

Metadata about a Source useful for automatically optimizing and tuning the pipeline, etc.

interface SourceMetadata {
estimatedSizeBytes?: bigint;
infinite?: boolean;
producesSortedKeys?: boolean;
}

§Properties

§
estimatedSizeBytes?: bigint
[src]

An estimate of the total size (in bytes) of the data that would be read from this source. This estimate is in terms of external storage size, before any decompression or other processing done by the reader.

§
infinite?: boolean
[src]

Specifies that the size of this source is known to be infinite (this is a streaming source).

§
producesSortedKeys?: boolean
[src]

Whether this source is known to produce key/value pairs with the (encoded) keys in lexicographically sorted order.