Reputation: 665
Hi accidentally deleted a jupyter notebook that I was running in DataProc
I can't see a checkpoints folder in my GCS bucket. Any suggestions of recovery?
Upvotes: 1
Views: 1039
Reputation: 316
if you never saved the checkpoints before or you explicitly deleted from the dataproc web UI, then it's very likely your data won't be able to recovered.
Things you can check to ensure GCS is able to save your checkpoints:
c.GCSContentsManager.bucket_name
is present and set with right bucket. If not present, you should set it and then from dataproc Web UI, Kernel > Restart to restart Jupyter from the Jupyter menu.Upvotes: 1