Can you recover an object from a failed request in django?
I am processing a lot of data and build dataframes through a django api on an ubuntu server, in which i instance an object that loads a dataframe, a couple of dictionaries and then makes a big data reconstruction process, that takes long.
I have been running a request for 3 days, an probably have one day left until it ends, but i need to know, in case it fails, can i recover the object and its data? because the object it's not deleted when the server has an internal error, and i haven't catched in every step of the process.