Mrart commented on PR #3968: URL: https://github.com/apache/flink-cdc/pull/3968#issuecomment-2958932494
This version does not support the following: ` @Experimental public static final ConfigOption<String> METADATA_LIST = ConfigOptions.key("metadata.list") .stringType() .noDefaultValue() .withDescription( "List of readable metadata from SourceRecord to be passed to downstream, split by `,`. " + "Available readable metadata are: op_ts."); @Experimental public static final ConfigOption<Boolean> INCLUDE_COMMENTS_ENABLED = ConfigOptions.key("include-comments.enabled") .booleanType() .defaultValue(false) .withDescription( "Whether enable include table and column comments, by default is false, if set to true, table and column comments will be sent. " + "Note: Enable this option will bring the implications on memory usage."); @Experimental public static final ConfigOption<Boolean> TREAT_TINYINT1_AS_BOOLEAN_ENABLED = ConfigOptions.key("treat-tinyint1-as-boolean.enabled") .booleanType() .defaultValue(true) .withDescription("Whether treat TINYINT(1) as boolean, by default is true. "); @Experimental public static final ConfigOption<Boolean> USE_LEGACY_JSON_FORMAT = ConfigOptions.key("use.legacy.json.format") .booleanType() .defaultValue(true) .withDescription( "Whether to use legacy json format. The default value is true, which means there is no whitespace before value and after comma in json format."); @Experimental public static final ConfigOption<Boolean> SCAN_INCREMENTAL_SNAPSHOT_UNBOUNDED_CHUNK_FIRST_ENABLED = ConfigOptions.key("scan.incremental.snapshot.unbounded-chunk-first.enabled") .booleanType() .defaultValue(false) .withDescription( "Whether to assign the unbounded chunks first during snapshot reading phase. This might help reduce the risk of the TaskManager experiencing an out-of-memory (OOM) error when taking a snapshot of the largest unbounded chunk. Defaults to false."); ` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org