Hey everyone,
I have a nextjs app with multiple api endpoints, one of them serves as a cron job called update.js
. This is computationally expensive. I understand that I can set memory to 3009 through vercel.json and that will also enable a v1.6 CPU for the execution.
I need help understanding if I send multiple requests (say 10) at the endpoint exactly at the 10th minute for example will the resource (RAM and CPU) be shared among all the concurrent processes or each one gets its own dedicated resource?
Thank you for you time. Have a good day