I accidentally deleted a jupyter notebook file on my AWS Sagemaker instance. I wonder if there's anyway to restore/recover the file?
Recover deleted notebook on AWS Sagemaker
8.5k Views Asked by user3750170 At
3
There are 3 best solutions below
0

One option that you could try if you accidentally deleted the file from the Jupyter lab side tab, is to:
- open a system terminal
- navigate to
cd ~/.local/share/Trash/files/
- run
ls
to list the deleted files and check if the file is in there. - Then just simply move it back to your sagemakers home directory (or wherever you want) -->
mv deleted-file.ipynb /home/sagemaker-user/
Well, first check
{notebook_directory}/.ipynb_checkpoints/
for a snapshot.. the directory should contain copies of your notebooks from the point in time when they were last saved.If that's gone, the IPython kernel saves commands issued to it in a sqlite db. found in
~/.ipython/profile_default
. There you should find history.sqlite.history.sqlite should contain all commands issued to the ipython kernel. Tables of interest are sessions and history.
You need to query the sessions table by session start or end time to determine which sessions are related to the ones you're looking for:
once you find your session:
Output your query to .py then use jupytext to convert to ipynb, then you have your notebook back: