forked from apache/flink
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extracts CheckpointStatsTracker interface and introduces DefaultCheck…
…pointStatsTracker
- Loading branch information
Showing
19 changed files
with
819 additions
and
626 deletions.
There are no files selected for viewing
559 changes: 26 additions & 533 deletions
559
flink-runtime/src/main/java/org/apache/flink/runtime/checkpoint/CheckpointStatsTracker.java
Large diffs are not rendered by default.
Oops, something went wrong.
571 changes: 571 additions & 0 deletions
571
...time/src/main/java/org/apache/flink/runtime/checkpoint/DefaultCheckpointStatsTracker.java
Large diffs are not rendered by default.
Oops, something went wrong.
91 changes: 91 additions & 0 deletions
91
...runtime/src/main/java/org/apache/flink/runtime/checkpoint/NoOpCheckpointStatsTracker.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.flink.runtime.checkpoint; | ||
|
||
import org.apache.flink.runtime.executiongraph.ExecutionAttemptID; | ||
import org.apache.flink.runtime.jobgraph.JobVertexID; | ||
|
||
import java.util.Collections; | ||
import java.util.Map; | ||
import java.util.Set; | ||
|
||
public enum NoOpCheckpointStatsTracker implements CheckpointStatsTracker { | ||
INSTANCE; | ||
|
||
@Override | ||
public void reportRestoredCheckpoint( | ||
long checkpointID, | ||
CheckpointProperties properties, | ||
String externalPath, | ||
long stateSize) {} | ||
|
||
@Override | ||
public void reportCompletedCheckpoint(CompletedCheckpointStats completed) {} | ||
|
||
@Override | ||
public PendingCheckpointStats getPendingCheckpointStats(long checkpointId) { | ||
return createPendingCheckpoint( | ||
checkpointId, | ||
System.currentTimeMillis(), | ||
CheckpointProperties.forCheckpoint( | ||
CheckpointRetentionPolicy.NEVER_RETAIN_AFTER_TERMINATION), | ||
Collections.emptyMap()); | ||
} | ||
|
||
@Override | ||
public void reportIncompleteStats( | ||
long checkpointId, ExecutionAttemptID attemptId, CheckpointMetrics metrics) {} | ||
|
||
@Override | ||
public void reportInitializationStarted( | ||
Set<ExecutionAttemptID> toInitialize, long initializationStartTs) {} | ||
|
||
@Override | ||
public void reportInitializationMetrics( | ||
ExecutionAttemptID executionAttemptId, | ||
SubTaskInitializationMetrics initializationMetrics) {} | ||
|
||
@Override | ||
public PendingCheckpointStats reportPendingCheckpoint( | ||
long checkpointId, | ||
long triggerTimestamp, | ||
CheckpointProperties props, | ||
Map<JobVertexID, Integer> vertexToDop) { | ||
return createPendingCheckpoint(checkpointId, triggerTimestamp, props, vertexToDop); | ||
} | ||
|
||
private PendingCheckpointStats createPendingCheckpoint( | ||
long checkpointId, | ||
long triggerTimestamp, | ||
CheckpointProperties props, | ||
Map<JobVertexID, Integer> vertexToDop) { | ||
return new PendingCheckpointStats(checkpointId, triggerTimestamp, props, vertexToDop); | ||
} | ||
|
||
@Override | ||
public void reportFailedCheckpoint(FailedCheckpointStats failed) {} | ||
|
||
@Override | ||
public void reportFailedCheckpointsWithoutInProgress() {} | ||
|
||
@Override | ||
public CheckpointStatsSnapshot createSnapshot() { | ||
return CheckpointStatsSnapshot.empty(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.