How do I force clean binary data after the workflow successful run? cause it’s taking a lot of space storage since my workflow involves uploading large video files.
What is the error message (if any)?
Please share your workflow
(Select the nodes on your canvas and use the keyboard shortcuts CMD+C/CTRL+C and CMD+V/CTRL+V to copy and paste the workflow.)
By default, n8n keeps binary data only for the duration of a workflow’s execution (in memory).
Once the execution finishes, that binary data is normally cleared—unless you’ve configured n8n to save execution data.
In that case, if you’re using filesystem mode (by setting N8N_DEFAULT_BINARY_DATA_MODE=filesystem), the binary files are written to disk and then later pruned based on your execution data retention settings (by default, finished executions, along with their binary data, are kept for about 14 days, but you can adjust this via environment variables).
.
If my reply answers your question please remember to mark it as the solution