Long time before starting webhook execution

The reason is that by defaults each execution starts in a new process which takes that long.

If you want to have a fast response you can tell n8n to run all the workflow executions in the same process. Then it will be very fast. You can do that by setting the following environment variable:

export EXECUTIONS_PROCESS=main

You can find the documentation here:

2 Likes