I am running a self-hosted n8n instance following the docker tutorial in the documentation. its been running really well, but lately, workflows keep breaking down. I think its related to the SQL getting huge or the disk filling up.
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
3e9f2215296e n8nio/n8n "tini -- /docker-ent…" About a minute ago Up 5 seconds 127.0.0.1:5678->5678/tcp root_n8n_1
ad8425483e2d traefik "/entrypoint.sh --ap…" About a minute ago Up About a minute 80/tcp, 0.0.0.0:443->443/tcp, :::443->443/tcp root_traefik_1
root@localhost:~# curl localhost:5678
curl: (52) Empty reply from server
I wonder if that process was causing an issue, what version of n8n are you running?
Is the disk usage a bit smaller now? I would be tempted to export the workflows you have and set up a new instance with the reduced execution logging and swap over to that.
yes, the usage is fine now. I am running the latest version (0.146.0)
I think the export of workflows and setting up a new one is the best idea. thank you!