Jefffrey commented on PR #18709:
URL: https://github.com/apache/datafusion/pull/18709#issuecomment-3533541517

   Taking inspiration from examples:
   
   
https://github.com/apache/datafusion/blob/1dddf034fd12dc7beefc27a38f512ea215395782/.github/workflows/rust.yml#L365-L377
   
   Which usually cleans about 5gb:
   
   ```
   Run echo "Disk space before cleanup:"
   Disk space before cleanup:
   Filesystem      Size  Used Avail Use% Mounted on
   overlay          72G   58G   14G  81% /
   tmpfs            64M     0   64M   0% /dev
   shm              64M     0   64M   0% /dev/shm
   /dev/root        72G   58G   14G  81% /__t
   tmpfs           3.2G  1.2M  3.2G   1% /run/docker.sock
   tmpfs           7.9G     0  7.9G   0% /proc/acpi
   tmpfs           7.9G     0  7.9G   0% /proc/scsi
   tmpfs           7.9G     0  7.9G   0% /sys/firmware
   Disk space after cleanup:
   Filesystem      Size  Used Avail Use% Mounted on
   overlay          72G   53G   19G  74% /
   tmpfs            64M     0   64M   0% /dev
   shm              64M     0   64M   0% /dev/shm
   /dev/root        72G   53G   19G  74% /__t
   tmpfs           3.2G  1.2M  3.2G   1% /run/docker.sock
   tmpfs           7.9G     0  7.9G   0% /proc/acpi
   tmpfs           7.9G     0  7.9G   0% /proc/scsi
   tmpfs           7.9G     0  7.9G   0% /sys/firmware
   ```
   
   But also adding what was suggested here: 
https://github.com/jlumbroso/free-disk-space/issues/21
   
   Combine together, seems to clean 24gb:
   
   ```
   Run echo "Disk space before cleanup:"
   Disk space before cleanup:
   Filesystem      Size  Used Avail Use% Mounted on
   overlay          72G   55G   18G  77% /
   tmpfs            64M     0   64M   0% /dev
   shm              64M     0   64M   0% /dev/shm
   /dev/root        72G   55G   18G  77% /__t
   tmpfs           3.2G  1.2M  3.2G   1% /run/docker.sock
   tmpfs           7.9G     0  7.9G   0% /proc/acpi
   tmpfs           7.9G     0  7.9G   0% /proc/scsi
   tmpfs           7.9G     0  7.9G   0% /sys/firmware
   Disk space after cleanup:
   Filesystem      Size  Used Avail Use% Mounted on
   overlay          72G   31G   42G  43% /
   tmpfs            64M     0   64M   0% /dev
   shm              64M     0   64M   0% /dev/shm
   /dev/root        72G   31G   42G  43% /__t
   tmpfs           3.2G  1.2M  3.2G   1% /run/docker.sock
   tmpfs           7.9G     0  7.9G   0% /proc/acpi
   tmpfs           7.9G     0  7.9G   0% /proc/scsi
   tmpfs           7.9G     0  7.9G   0% /sys/firmware
   ```
   
   🤯 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to