ERROR Push Failed, cleanup resources. No space left of device

Hi,
I have the DSS installed using a virtual machine.
I'm having issues running recipes, I get that:
[ERROR] [dku.input.push] - Push failed, cleanup resources
I read the logs and find:
Caused by: java.io.IOException: No space left on device
I've read the documentation but cannot find how to free up more space.
I've checked Adminstration> Maintenance> System Info for the data directory.
I see that the virtual disk image is now 23 GB in size.
How am I supposed to free up more space?
Thank you for your time and help.
Answers
-
Sergey Dataiker, Dataiku DSS Core Designer, Dataiku DSS & SQL, Dataiku DSS Core Concepts, Registered Posts: 365 Dataiker
Please SSH to DSS host and run a few commands:
df -h (this will give overall idea of the partitions)
du -sh <path_to_DSS_data_dir>/* | sort -h (this will return the list and size of folders/files in DSS directory in size ascending order)
-
Hi sergeyd,
How am I supposed to SSH to DSS host?
-
Sergey Dataiker, Dataiku DSS Core Designer, Dataiku DSS & SQL, Dataiku DSS Core Concepts, Registered Posts: 365 Dataiker
I assume you used OVA image and imported it to your local VM tools otherwise you were already needed to SSH and run command to install DSS.
To ssh into DSS host, you will need SSH client (Putty for Windows and terminals for Mac/Linux). You can find many tutorials on how to SSH into Linux host like this one:
You will need to use Network login as described in the startup screen of the DSS VM image:
-
Ok, thanks for the clarification.