You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 2, 2022. It is now read-only.
Greetings Folks, I am relatively new to this community and am getting my head wrapped around the operator. One of the problems I am currently facing is how to restart a Job after a catastrophic failure, ignoring all prior savepoints (essentially redeploying the application as if it were a fresh deployment). I think I am missing something obvious here. When restarting the application I am tainting the flinkproperties of the CRD to trigger a redeployment, however it is picking up the last savepoint from a previous application upgrade instead of redeploying the application without a savepoint. Any and all pointers much appreciated!
The text was updated successfully, but these errors were encountered:
I couldn't find this feature in user guide or any doc neither. Even with fromSavepoint unspecified or set to empty, the job still pick up from the previous checkpoint.
Hi,
If the flink savepoint was failed to create. And if the checkpoint still persists then set the checkpoint path in the fromSavepoint and redo the deployment again so the flink job will be restored from the last checkpoint. (OR) You can delete the resource flinkCluster for the particular job and redeploy the flinkCluster and the other deployments and so here the jobs will be started without any checkpoint or savepoint set.
But please be aware this procedure will be like deploying the new flink jobCluster.
HI @benkusak ,
As far as I can tell, this Flink operator is no longer maintained, the latest version of Flink it's officially supporting is 1.11.
This fork seems more and more active: https://github.com/spotify/flink-on-k8s-operator
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Greetings Folks, I am relatively new to this community and am getting my head wrapped around the operator. One of the problems I am currently facing is how to restart a Job after a catastrophic failure, ignoring all prior savepoints (essentially redeploying the application as if it were a fresh deployment). I think I am missing something obvious here. When restarting the application I am
tainting
theflinkproperties
of the CRD to trigger a redeployment, however it is picking up the lastsavepoint
from a previousapplication upgrade
instead of redeploying the application without a savepoint. Any and all pointers much appreciated!The text was updated successfully, but these errors were encountered: