elkhand commented on issue #2033:
URL: https://github.com/apache/iceberg/issues/2033#issuecomment-765557995


   This can be reproduced locally too(running in local Flink cluster):
   - start the job, let few checkpoints succeed
   - stop the job with the final savepoint 
   ```
   ./bin/flink stop --savepointPath /tmp/flink-savepoints $JOB_ID
   ```
   - restart the job from the savepoint 
   ```
   ./bin/flink run \
   --detached \
   --fromSavepoint /tmp/flink-savepoints/savepoint-f0d209-025f264f2001 \
   -c com.demo.MainClassOfYourPipeline \
   yourJar.jar \
   arg1 arg2
   ```
   The result: 
   - only Flink specific manifest files are created, and Iceberg specific files 
are NOT created.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to