DEV Community

Discussion on: Is it cost-efficient to run Spring Boot on Azure Functions?

Collapse
 
zanonnicola profile image
Nicola Zanon

Thanks for sharing the post. I’d argue that if you are worried about latency due to a “cold start” maybe you should look elsewhere and not run your code in a Lambda.

In my humble opinion functions are very useful for periodic invocations and maybe with loads of peaks in requests (hence the scalability).

Suggesting to pay a premium plan to have warm start doesn’t sound like a good solution to me.

Collapse
 
siy profile image
Sergiy Yevtushenko

I’d argue that if you are worried about latency due to a “cold start” maybe you should look elsewhere and not run your code in a Lambda.

Or not use Spring.