Rank 1: Thread
Hi,
I have created a function that acts as an upsert endpoint (domain) which is expected to receive a large amount of requests. It seems that after a certain point, all requests begin to timeout (30 second timeout set). If a request to a function is in the process of timing out, does this mean all other requests hang, waiting for the timeout to occur, before other requests are processed?
Is there a way to improve concurrency or throughput with functions? I'm trying to process over 1000 requests per minute.
I'm using the nodejs runtime.
Thanks.