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

MysqlSourceConfig

import type { MysqlSourceConfig } from "https://googleapis.deno.dev/v1/datastream:v1.ts";

MySQL source configuration

interface MysqlSourceConfig {
excludeObjects?: MysqlRdbms;
includeObjects?: MysqlRdbms;
maxConcurrentBackfillTasks?: number;
maxConcurrentCdcTasks?: number;
}

§Properties

§
excludeObjects?: MysqlRdbms
[src]

MySQL objects to exclude from the stream.

§
includeObjects?: MysqlRdbms
[src]

MySQL objects to retrieve from the source.

§
maxConcurrentBackfillTasks?: number
[src]

Maximum number of concurrent backfill tasks. The number should be non negative. If not set (or set to 0), the system's default value will be used.

§
maxConcurrentCdcTasks?: number
[src]

Maximum number of concurrent CDC tasks. The number should be non negative. If not set (or set to 0), the system's default value will be used.