public class FailureRateRestartStrategy extends Object implements RestartStrategy
ExecutionGraph when failure rate exceeded
with a fixed time delay in between.| Modifier and Type | Class and Description |
|---|---|
static class |
FailureRateRestartStrategy.FailureRateRestartStrategyFactory |
| Constructor and Description |
|---|
FailureRateRestartStrategy(int maxFailuresPerInterval,
org.apache.flink.api.common.time.Time failuresInterval,
org.apache.flink.api.common.time.Time delayInterval) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
canRestart()
True if the restart strategy can be applied to restart the
ExecutionGraph. |
static FailureRateRestartStrategy.FailureRateRestartStrategyFactory |
createFactory(org.apache.flink.configuration.Configuration configuration) |
CompletableFuture<Void> |
restart(RestartCallback restarter,
ScheduledExecutor executor)
Called by the ExecutionGraph to eventually trigger a full recovery.
|
String |
toString() |
public FailureRateRestartStrategy(int maxFailuresPerInterval,
org.apache.flink.api.common.time.Time failuresInterval,
org.apache.flink.api.common.time.Time delayInterval)
public boolean canRestart()
RestartStrategyExecutionGraph.canRestart in interface RestartStrategypublic CompletableFuture<Void> restart(RestartCallback restarter, ScheduledExecutor executor)
RestartStrategyThe thread that calls this method is not supposed to block/sleep.
restart in interface RestartStrategyrestarter - The hook to restart the ExecutionGraphexecutor - An scheduled executor to delay the restartCompletableFuture that will be completed when the restarting process is done.public static FailureRateRestartStrategy.FailureRateRestartStrategyFactory createFactory(org.apache.flink.configuration.Configuration configuration) throws Exception
ExceptionCopyright © 2014–2020 The Apache Software Foundation. All rights reserved.