Reputation: 119
I finally managed to train a regressor model with big data using dask and now I am getting this error and I am not sure what to do since I don't see any straight solution for Sagemaker instances.
I even tried increasing the instance size volumen.
Does anyone might know what to do on this specific case scenario?
Upvotes: 0
Views: 1609
Reputation: 5578
You already tried increase the volume size.
Check if you actually ran out of disk space:
df -kh
If so find what folder/files are taking up the space:
du -ksh /some/folder
Upvotes: 1