You can backup and restore your Event Processing flows and Flink instances as follows.
Event Processing flows
You can export your existing Event Processing flows to save them, making them available to import later, as described in exporting flows.
Flink instances
A Flink savepoint is a consistent image of a Flink job’s execution state. Backing up your Flink instances involves backing up savepoints. This document is intended for Flink jobs running in an application mode Flink cluster.
Prerequisites
This procedure assumes that you have the following deployed:
- An instance of Flink deployed by the IBM Operator for Apache Flink and configured with persistent storage with a PersistentVolumeClaim (PVC).
- Flink jobs as application deployments.
The FlinkDeployment custom resource that configures your Flink instance must define the hereafter parameters, each pointing to a different directory on the persistent storage.
spec.flinkConfiguration.state.checkpoints.dirspec.flinkConfiguration.state.savepoints.dirspec.flinkConfiguration.high-availability.storageDir(if high availability is required)
Note: These directories are automatically created by Flink if they do not exist.
Backing up
The backup process captures the latest state of a running Flink job and its specification, allowing to re-create the job from the saved state when required. To back up your Flink instance, update each of your deployed instances by editing their respective FlinkDeployment custom resources as follows:
-
Ensure that the
statussection indicates that the Job Manager is inREADYstatus and that the Flink job is inRUNNINGstatus by checking theFlinkDeploymentcustom resource.status: jobManagerDeploymentStatus: READY jobStatus: state: RUNNING -
Set the following values in the
FlinkDeploymentcustom resource:a. Set the value of
spec.job.upgradeModetosavepoint.b. Set the value of
spec.job.statetorunning.c. Set the value of
spec.job.savepointTriggerNonceto an integer that has never been used before for that option.For example:
job: [...] savepointTriggerNonce: <integer value> state: running upgradeMode: savepointd. Save the changes in the
FlinkDeploymentcustom resource.A savepoint is triggered and written to a location in the PVC, which is indicated in the
status.jobStatus.savepointInfo.lastSavepoint.locationfield of theFlinkDeploymentcustom resource.For example:
status: [...] jobStatus: [...] savepointInfo: [...] lastSavepoint: formatType: CANONICAL location: 'file:/opt/flink/volume/flink-sp/savepoint-e372fa-9069a1c0563e' timeStamp: 1733957991559 triggerNonce: 1 triggerType: MANUAL - Save a copy of the
FlinkDeploymentcustom resource. - Keep the
FlinkDeploymentcustom resource and the PVC bound to a persistent volume (PV) containing the savepoint to make them available later for restoring your deployment.
Restoring
To restore a previously backed-up Flink instance, ensure that the PVC bound to a PV containing the snapshot is available, then update your FlinkDeployment custom resource as follows.
-
Edit the
FlinkDeploymentcustom resource that you saved earlier when backing up your instance:a. Set the value of
spec.job.upgradeModetosavepoint.b. Set the value of
spec.job.statetorunningto resume the Flink job.c. Remove
spec.job.savepointTriggerNonceand its value.d. Set the value of
spec.job.initialSavepointPathto the savepoint location reported during the backing up operation in step 1.d.For example:
job: [...] state: running upgradeMode: savepoint initialSavepointPath: file:/opt/flink/volume/flink-sp/savepoint-e372fa-9069a1c0563e allowNonRestoredState: true -
Apply the modified
FlinkDeploymentcustom resource.