Thanks to visit codestin.com
Credit goes to github.com

Skip to content

[FLINK-26803][checkpoint] Merging channel state files #20151

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jan 23, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
[hotfix] Remove useless exception in SubtaskCheckpointCoordinatorImpl
  • Loading branch information
1996fanrui committed Jan 20, 2023
commit 584f0ec9b2863132b7b417d753727c9e5276c356
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,7 @@ class SubtaskCheckpointCoordinatorImpl implements SubtaskCheckpointCoordinator {
ChannelStateWriter, Long, CompletableFuture<Void>, CheckpointException>
prepareInputSnapshot,
int maxRecordAbortedCheckpoints,
DelayableTimer registerTimer)
throws IOException {
DelayableTimer registerTimer) {
this(
checkpointStorage,
taskName,
Expand Down Expand Up @@ -169,8 +168,7 @@ class SubtaskCheckpointCoordinatorImpl implements SubtaskCheckpointCoordinator {
int maxRecordAbortedCheckpoints,
ChannelStateWriter channelStateWriter,
boolean enableCheckpointAfterTasksFinished,
DelayableTimer registerTimer)
throws IOException {
DelayableTimer registerTimer) {
this.checkpointStorage =
new CachingCheckpointStorageWorkerView(checkNotNull(checkpointStorage));
this.taskName = checkNotNull(taskName);
Expand Down