SpannerSourceConfig
import type { SpannerSourceConfig } from "https://googleapis.deno.dev/v1/datastream:v1.ts";Configuration for syncing data from a Spanner source.
interface SpannerSourceConfig {
backfillDataBoostEnabled?: boolean;
changeStreamName?: string;
excludeObjects?: SpannerDatabase;
fgacRole?: string;
includeObjects?: SpannerDatabase;
maxConcurrentBackfillTasks?: number;
maxConcurrentCdcTasks?: number;
spannerRpcPriority?:
} | "SPANNER_RPC_PRIORITY_UNSPECIFIED"
| "LOW"
| "MEDIUM"
| "HIGH";
§Properties
§
backfillDataBoostEnabled?: boolean
[src]Optional. Whether to use Data Boost for Spanner backfills. Defaults to false if not set.
§
excludeObjects?: SpannerDatabase
[src]Optional. The Spanner objects to avoid retrieving. If some objects are both included and excluded, an error will be thrown.
§
includeObjects?: SpannerDatabase
[src]Optional. The Spanner objects to retrieve from the data source. If some objects are both included and excluded, an error will be thrown.