| Package | Description |
|---|---|
| org.apache.flink.runtime.checkpoint | |
| org.apache.flink.runtime.executiongraph | |
| org.apache.flink.runtime.io.network.api | |
| org.apache.flink.runtime.jobgraph.tasks | |
| org.apache.flink.runtime.jobmanager.slots | |
| org.apache.flink.runtime.jobmaster | |
| org.apache.flink.runtime.state | |
| org.apache.flink.runtime.state.heap |
This package contains the classes for key/value state backends that store the state
on the JVM heap as objects.
|
| org.apache.flink.runtime.taskexecutor | |
| org.apache.flink.runtime.taskmanager |
| Modifier and Type | Method and Description |
|---|---|
static CheckpointOptions |
CheckpointOptions.forCheckpointWithDefaultLocation() |
| Modifier and Type | Method and Description |
|---|---|
void |
Execution.triggerCheckpoint(long checkpointId,
long timestamp,
CheckpointOptions checkpointOptions)
Trigger a new checkpoint on the task of this execution.
|
void |
Execution.triggerSynchronousSavepoint(long checkpointId,
long timestamp,
CheckpointOptions checkpointOptions,
boolean advanceToEndOfEventTime)
Trigger a new checkpoint on the task of this execution.
|
| Modifier and Type | Method and Description |
|---|---|
CheckpointOptions |
CheckpointBarrier.getCheckpointOptions() |
| Constructor and Description |
|---|
CheckpointBarrier(long id,
long timestamp,
CheckpointOptions checkpointOptions) |
| Modifier and Type | Method and Description |
|---|---|
Future<Boolean> |
AbstractInvokable.triggerCheckpointAsync(CheckpointMetaData checkpointMetaData,
CheckpointOptions checkpointOptions,
boolean advanceToEndOfEventTime)
This method is called to trigger a checkpoint, asynchronously by the checkpoint
coordinator.
|
void |
AbstractInvokable.triggerCheckpointOnBarrier(CheckpointMetaData checkpointMetaData,
CheckpointOptions checkpointOptions,
CheckpointMetrics checkpointMetrics)
This method is called when a checkpoint is triggered as a result of receiving checkpoint
barriers on all input streams.
|
| Modifier and Type | Method and Description |
|---|---|
void |
TaskManagerGateway.triggerCheckpoint(ExecutionAttemptID executionAttemptID,
org.apache.flink.api.common.JobID jobId,
long checkpointId,
long timestamp,
CheckpointOptions checkpointOptions,
boolean advanceToEndOfEventTime)
Trigger for the given task a checkpoint.
|
| Modifier and Type | Method and Description |
|---|---|
void |
RpcTaskManagerGateway.triggerCheckpoint(ExecutionAttemptID executionAttemptID,
org.apache.flink.api.common.JobID jobId,
long checkpointId,
long timestamp,
CheckpointOptions checkpointOptions,
boolean advanceToEndOfEventTime) |
| Modifier and Type | Method and Description |
|---|---|
RunnableFuture<SnapshotResult<OperatorStateHandle>> |
DefaultOperatorStateBackend.snapshot(long checkpointId,
long timestamp,
CheckpointStreamFactory streamFactory,
CheckpointOptions checkpointOptions) |
RunnableFuture<S> |
SnapshotStrategy.snapshot(long checkpointId,
long timestamp,
CheckpointStreamFactory streamFactory,
CheckpointOptions checkpointOptions)
Operation that writes a snapshot into a stream that is provided by the given
CheckpointStreamFactory and
returns a @RunnableFuture that gives a state handle to the snapshot. |
| Modifier and Type | Method and Description |
|---|---|
RunnableFuture<SnapshotResult<KeyedStateHandle>> |
HeapKeyedStateBackend.snapshot(long checkpointId,
long timestamp,
CheckpointStreamFactory streamFactory,
CheckpointOptions checkpointOptions) |
| Modifier and Type | Method and Description |
|---|---|
CompletableFuture<Acknowledge> |
TaskExecutorGateway.triggerCheckpoint(ExecutionAttemptID executionAttemptID,
long checkpointID,
long checkpointTimestamp,
CheckpointOptions checkpointOptions,
boolean advanceToEndOfEventTime)
Trigger the checkpoint for the given task.
|
CompletableFuture<Acknowledge> |
TaskExecutor.triggerCheckpoint(ExecutionAttemptID executionAttemptID,
long checkpointId,
long checkpointTimestamp,
CheckpointOptions checkpointOptions,
boolean advanceToEndOfEventTime) |
| Modifier and Type | Method and Description |
|---|---|
void |
Task.triggerCheckpointBarrier(long checkpointID,
long checkpointTimestamp,
CheckpointOptions checkpointOptions,
boolean advanceToEndOfEventTime)
Calls the invokable to trigger a checkpoint.
|
Copyright © 2014–2020 The Apache Software Foundation. All rights reserved.