gaoyan1998 commented on code in PR #3607: URL: https://github.com/apache/flink-cdc/pull/3607#discussion_r1766407561
########## flink-cdc-common/src/main/java/org/apache/flink/cdc/common/pipeline/PipelineOptions.java: ########## @@ -39,6 +39,13 @@ public class PipelineOptions { .defaultValue("Flink CDC Pipeline Job") .withDescription("The name of the pipeline"); + public static final ConfigOption<Double> RATE_LIMIT = + ConfigOptions.key("rate.limit") + .doubleType() + .defaultValue(0d) + .withDescription( + "Limits the number of records per second, default 0 is disabled"); + Review Comment: done -- 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