How to cleanup the temporary storage?

I tried following the official guide to manually delete old session. I deleted from minio & postgres but most of my storage is consumed by the mount: /mnt/efs

It looks like the dump session files, should I also delete them manually somehow?

This directory contains temporary files/recordings. These files are automatically deleted, depending on the version you’re running, every 2 to 4 days. But you can also run that manually. Below is the script to delete recordings that are older than 1 day:

# Delete all the files older than 1 day
set -x
echo "Cleaning NFS for recordings older than 1 day"
storage=`du -sh /mnt/efs`
find /mnt/efs -type f -mtime +1 -delete
echo "Storage before cleaning"
echo ${storage}
echo "Storage after cleaning"
du -sh /mnt/efs