[
https://issues.apache.org/jira/browse/FLINK-17873?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17113842#comment-17113842
]
Yuan Mei edited comment on FLINK-17873 at 5/22/20, 8:34 AM:
------------------------------------------------------------
Looks like the issue has already been resolved by accident in FLINK-17342
{@link CheckpointCoordinatorConfiguration#CheckpointCoordinatorConfiguration}
{{ Preconditions.checkArgument(!isUnalignedCheckpointsEnabled ||
maxConcurrentCheckpoints <= 1,}}
{{ "maxConcurrentCheckpoints can't be > 1 if UnalignedCheckpoints
enabled");}}
close it
was (Author: ym):
Looks like the issue has already been resolved by accident in FLINK-17342
```
Preconditions.checkArgument(!isUnalignedCheckpointsEnabled ||
maxConcurrentCheckpoints <= 1,
"maxConcurrentCheckpoints can't be > 1 if UnalignedCheckpoints enabled");
```
close it
> Add check for max concurrent checkpoints under UC mode
> ------------------------------------------------------
>
> Key: FLINK-17873
> URL: https://issues.apache.org/jira/browse/FLINK-17873
> Project: Flink
> Issue Type: Sub-task
> Components: Runtime / Checkpointing
> Reporter: Yuan Mei
> Assignee: Yuan Mei
> Priority: Major
> Fix For: 1.11.0
>
>
> Currently, the UC mode only supports max concurrent checkpoint number = 1.
> So we need to check whether the configured max allowed checkpoints are more
> than 1 under the UC mode.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)