DEV Community

Discussion on: Ingest Millions of Messages in the Queue using Serverless

Collapse
 
mrhassanmurtaza profile image
Hassan Murtaza

Hi Nachiket,
Thank you for the feedback.

In my case, the response was just the ids so it wasn't big and it had no pagination. But even if we have pagination, we'll need to use something to hold the current state of invocations so that we can scale based on the number of pages/per invocations, etc.

Also, if the response is too large to be processed by a single function, we can for sure break it further as needed since the strength of functions lies in multiple small invocations :).