Either use a simple cron job + find+rm command (1), ie ``` /bin/find /mnt/nfs/data/tus -mindepth 1 -maxdepth 1 -mtime +5 ! -name '.nfs*' -exec rm -rvf {} + | tee -a /mnt/nfs/galaxy/var/log/cleanup_tus_upload_store.log; ``` Or Implement a Celery task like done to old failed jobs (2). See [enable_failed_jobs_working_directory_cleanup](https://docs.galaxyproject.org/en/latest/admin/options.html#enable-failed-jobs-working-directory-cleanup) Probably 2 is better
Either use a simple cron job + find+rm command (1), ie
Or Implement a Celery task like done to old failed jobs (2). See enable_failed_jobs_working_directory_cleanup
Probably 2 is better