Common Issues
Last updated
/home directoryAs /home approaches full-capacity, healthchecks will start to drain worker pods to avoid breaking in-fligth jobs with 'no space left on device' errors. To clean up files and free disk space, use du:
du -sh $(ls -A /home/$USER)
This lists the size of all files+directories in the current user's home directory (including hidden files). Users can then recusively decend from there, replacing /home/$USER with diretories furthur down the tree to explore and clean-up files. Admins can explre the entire weka tree with sudo du -sh $(ls -A /home).
Last updated

