[
{
“api_url”: “https://catfact.ninja/fact”
},
{
“api_url”: “https://api.agify.io?name=meelad”
}
]
For the above example, there are currently two items as input to the HTTP node. I want to know whether both those API calls will be made sequentially i.e. one after another or both the API calls will be fired in parallel and the response to those API’s will then be give as output.
Normally, these run at the same time.
It also depends on how n8n is set up, such as if it’s in Queue Mode with a limited number of workers.
Also, the HTTP Node lets you set up batching.
Without batching all requests are done within a few ms.
With batching only 5 requests are done in parallel. Then the interval is waited.
1 Like
Thank you for the clarification!
How can I check if n8n is running in queue mode?
Thats part of the configuration.
1 Like
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.