GitHub user dave-csc added a comment to the discussion: The executions folder
is too large
If you don't mind to trash some extremely detailed logs about pipelines and
workflows executions (this is what is contained in the audit/executions folder
essentially), especially in a server where you can't run Hop GUI, you can set
up this bash script in a file and execute it daily via crontab or similar:
```
#!/bin/bash
find ${HOP_AUDIT_FOLDER}/executions -ctime +30 -type f -delete
find ${HOP_AUDIT_FOLDER}/executions -type d -empty -delete
```
This will remove any audit file older than 30 days (you need to setup
`${HOP_AUDIT_FOLDER}` in your system environment, or replace it with the audit
folder in Hop if you used the default one).
Hope this helps :)
GitHub link:
https://github.com/apache/hop/discussions/5186#discussioncomment-12852623
----
This is an automatically sent email for [email protected].
To unsubscribe, please send an email to: [email protected]