Describe the issue/error/question
I’ve deployed node red on a 2 core t2 medium machine on aws in the own process mode and my main flow starts from a webhook from invision community software. Sometimes my flows fail and when I got to the execution none of the nodes received any data and have neither ticks/checks nor error signs. The execution time is less than a second and retrying it will not make it succeed either.
I thought the webhooks might be the issue and simply don’t send any info but I created a small ASP.NET core app and send the same wbhook to them and log the content with date and time and content of the sent body to a file and the webhooks sent are fine.
Please share the workflow
As you can see I’m not even parsing the workflow body. It is www-x-form-urlencoded and I could not parse it using raw body so for now am pulling the info from their API
Information on your n8n setup
- n8n version: The latest 8.8 or whatever which is on npm
- Database you’re using (default: SQLite): default SQLLite
- Running n8n with the execution process [own(default), main]: own (this was my first suspission)
- Running n8n via [Docker, npm, n8n.cloud, desktop app]: npm and running using pm2
I’m new to n8n but I’m a professional developer for mre than 13 years so can send you as much technical info as possible.
I don’t know if the webhook node somehow has a timeout which doesn’t wait enough to get the data or what happens but usually the errors happen in burst one after another and they go away and I checked my system’s both memory and CPU usage but CPU was under 8% and memory and network were totally fine as well.
How can I find out why these errors which have no data entered into the webhook and re-executing them doesn’t help happen.