23 days ago
Hi team,
My n8n Postgres volume is at 100% capacity and I can't access n8n to export or delete my workflows.
Could you please temporarily increase the volume size to 2-3GB so I can:
Access n8n
Export my workflows
Clean up execution data
I'll reduce usage immediately after and won't need the extra space long-term.
I'm on the Hobby plan and can't upgrade right now.
Thank you!
3 Replies
23 days ago
Hey there! We've found the following might help you get unblocked faster:
🧵 passenger-volume is full and I can't access my executions in n8n to delete them
🧵 Postgres Volume Migration Failed After Railway Metal Rollback – Production n8n Instance Down
If you find the answer from one of these, please let us know by solving the thread!
23 days ago
You will need to temp upgrade your plan. Set the volume size to 3G, clean the db and downgrade.
check https://docs.railway.com/reference/volumes
I am not sure the staff can assist with a temporary increase in volume.
23 days ago
otherwise, you can connect directly to the Postgres DB instance. check the space the logs (execution tables) are using.
SELECT schemaname, tablename, pg_size_pretty(pg_total_relation_size(schemaname||'.'||tablename)) AS size FROM pg_tables WHERE tablename LIKE '%execution%' ORDER BY pg_total_relation_size(schemaname||'.'||tablename) DESC;
Then do some clean up