savepoint
savepoint and restore with savepoint
savepoint is created using the checkpoint. a global mirror of job execution status, which can be used for job or seatunnel stop and recovery, upgrade, etc.
use savepointâ
To use savepoint, you need to ensure that the connector used by the job supports checkpoint, otherwise data may be lost or duplicated.
Make sure the job is running
Use the following command to trigger savepoint:
./bin/seatunnel.sh -s {jobId}
After successful execution, the checkpoint data will be saved and the task will end.
use restore with savepointâ
Resume from savepoint using jobId
./bin/seatunnel.sh -c {jobConfig} -r {jobId}