davidradl commented on code in PR #27589:
URL: https://github.com/apache/flink/pull/27589#discussion_r2793992293
##########
flink-core/src/main/java/org/apache/flink/configuration/CheckpointingOptions.java:
##########
@@ -627,6 +627,18 @@ public class CheckpointingOptions {
"the important
considerations"))
.build());
+ public static final ConfigOption<Boolean>
PAUSE_SOURCES_UNTIL_FIRST_CHECKPOINT =
+ key("pipeline.sources.pause-until-first-checkpoint")
+ .booleanType()
+ .defaultValue(false)
+ .withDescription(
+ "Don't pull any data from sources until the first
checkpoint is triggered. "
+ + "This might be helpful in reducing
recovery times in cases where "
+ + "recovered records from unaligned
checkpoint compete with new incoming records for processing. "
Review Comment:
nit:
from unaligned checkpoint -> from an unaligned checkpoint
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]