Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
These instances start up 99% full as soon as they are built. The usage breakdown is as follows: ``` $ df -h / Filesystem Size Used Avail Use% Mounted on /dev/root 7.6G 7.5G 141M 99% / ``` ``` $ sudo du -hs /* ... 3.8G usr 5.3G var ``` ``` $ sudo du -sh /usr/* | grep M 406M /usr/bin 215M /usr/include 99M /usr/libexec 670M /usr/local 34M /usr/sbin 332M /usr/share 285M /usr/src ``` ``` $ sudo du -sh /var/lib/* | grep G 4.3G /var/lib/docker ``` It is likely that the size of dependencies has grown over time, particularly Python libraries and Docker executables. This leaves little room for operating the instances, which fill up sooner and sooner, necessitating manual termination and restarts. This increased space will give us more breathing room for the next few years.
- Loading branch information