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

SourceSplitOptions

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

Hints for splitting a Source into bundles (parts for parallel processing) using SourceSplitRequest.

interface SourceSplitOptions {
desiredBundleSizeBytes?: bigint;
desiredShardSizeBytes?: bigint;
}

§Properties

§
desiredBundleSizeBytes?: bigint
[src]

The source should be split into a set of bundles where the estimated size of each is approximately this many bytes.

§
desiredShardSizeBytes?: bigint
[src]

DEPRECATED in favor of desired_bundle_size_bytes.