LifeTime of Backend App

Hi Team

I have some Queries on how Life Time of a Backend App will be determined

If I use other Request API Libraries like Fetch or axios and the API Call will take more than 20 Seconds for the response means how Our App will behave.

The use case for I’m not using $request, it will shut down the Connection in 5secs. Please help me to understand the behind scenes

Hi Alagu,

All our Backend/Serverless apps are powered by AWS lambda. The maximum time a lambda function in our service can take to complete it’s execution is 21 seconds and the memory/RAM of those functions are limited to 128 mb if your operations are completed within 21 seconds and without maxing out the 128 mb RAM, there shouldn’t be any problems.

Hope this answers your questions!

Thank you for the Clarifications