I run a quite time consuming (>3 days) simulation using ipyparallel's map function like that in Jupyter Notebook
from ipyparallel import Client
rc = Client()
lview = rc.load_balanced_view()
ar = lview.map(runsimulation, parameter)
and I really need those results. But unfortunately a single instance died because of memory starvation. Now i can not access the result using ar[i] anymore. Is there a chance to recover all the other results that where most certainly computed (I can see the characteristic memory and cpu time consumption in the Ganglia Monitor of the cluster).
I still have the object ar in the Jupyter Notebook.