``` Concurrent Subrequest Limit As of this release, we impose a limit on the number of outgoing HTT

Concurrent Subrequest Limit

As of this release, we impose a limit on the number of outgoing HTTP requests that a worker can make simultaneously. For each incoming request, a worker can make up to 6 concurrent outgoing fetch() requests.


This means that something like this:

await Promise.all(jobs.map(async (job_url) => await $fetch(job_url))


Would take very long right?
It would do 6 + 6 + 6 + 6 until it reaches the limit of 50 per request
Was this page helpful?