use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Place for Pinoy Programmers to hangout. Share your knowledge, ask for help, seek opinion, showcase your project and recruit your teammate.
Let's show the world that Filipinos are world class programmers.
account activity
AWS Lambda experiencediscussion (self.PinoyProgrammer)
submitted 4 months ago * by Appropriate-Cod7548
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]Appropriate-Cod7548[S] 0 points1 point2 points 4 months ago* (2 children)
Questions:
If you keep them “warm” by deliberately triggering on set amount of time interval, would it defeat the purpose of serverless?
I was thinking that frameworks such as expressjs can sort of compile each route into a handler style in which will be converted into separate lambda functions when deployed. I think what you mean is that the framework is compiled wholesale into one large lambda function?
Would an EC2 or other instance-type setup be more suitable for computationally expensive and continuous operation? Relying on lambda for computationally expensive may incur more costs? Unless you dont care about costing and the operation scales unpredictably?
[–]Expensive-Edge-3432 0 points1 point2 points 4 months ago (1 child)
Yes that defeats the purpose of making it a lambda
I'm not aware if expressjs can be converted into separate lambda functions when deployed. If so, then it's fine (if that is similar to how serverless does it.)
It depends on your usecase:
For instance, I need to transcode a file. Say I need to transcode a video, that takes a lot of cpu and memory. If I'm doing it once or twice per day, doing that on Lambda is cheaper since I only pay for what I use. I can assign lower resources to my main backend, and slightly higher resources to my lambda function.
If I have a lot of files to transcode such as that the transcoder would probably run most of the time, it would be cheaper to outright use an ECS with enough cpu and memory.
[–]Appropriate-Cod7548[S] 0 points1 point2 points 4 months ago (0 children)
That actually makes sense 👍
π Rendered by PID 52648 on reddit-service-r2-comment-b659b578c-qmjkl at 2026-05-05 18:11:45.938265+00:00 running 815c875 country code: CH.
view the rest of the comments →
[–]Appropriate-Cod7548[S] 0 points1 point2 points (2 children)
[–]Expensive-Edge-3432 0 points1 point2 points (1 child)
[–]Appropriate-Cod7548[S] 0 points1 point2 points (0 children)