pnowojski commented on a change in pull request #11899:
URL: https://github.com/apache/flink/pull/11899#discussion_r417212307



##########
File path: 
flink-runtime/src/main/java/org/apache/flink/runtime/jobgraph/tasks/CheckpointCoordinatorConfiguration.java
##########
@@ -170,9 +198,87 @@ public String toString() {
                        ", maxConcurrentCheckpoints=" + 
maxConcurrentCheckpoints +
                        ", checkpointRetentionPolicy=" + 
checkpointRetentionPolicy +
                        ", isExactlyOnce=" + isExactlyOnce +
-                       ", isUnalignedCheckpoint=" + isUnalignedCheckpoint +
+                       ", isUnalignedCheckpoint=" + 
isUnalignedCheckpointsEnabled +
                        ", isPreferCheckpointForRecovery=" + 
isPreferCheckpointForRecovery +
                        ", tolerableCheckpointFailureNumber=" + 
tolerableCheckpointFailureNumber +
                        '}';
        }
+
+       public static CheckpointCoordinatorConfigurationBuilder builder() {
+               return new CheckpointCoordinatorConfigurationBuilder();
+       }
+
+       /**
+        * {@link CheckpointCoordinatorConfiguration} builder.
+        */
+       public static class CheckpointCoordinatorConfigurationBuilder {

Review comment:
       nit: introduction of this builder also should/could have been a separate 
commit.




----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to