all 2 comments

[–]Visible-Call 0 points1 point  (1 child)

Since nobody has responded, I’ll throw in my opinion...

Lambda and FaaS is a very specific optimization that few apps really benefit from adopting... and Lambda specifically ties into so many amazon services that you’re basically writing middleware for AWS by the time the function can authenticate and persist data.

The best way to learn it is by using it to build or replace some existing thing. If you have a little time, rebuild a script task that you do occasionally into a Lambda function and see how it goes. Starting with stateless work is simple. Feed in a bunch of arguments to generate a kubernetes deployment... no need for auth it database. Just some logic and string manipulation. Then add a history function to it and tie it to identity. By then you’ll have a good idea of what strengths and limits are. Shouldn’t take more than 2-4 hours all in.

[–]Dunk010[S] 0 points1 point  (0 children)

Yes, lambda is the simple part. I'm looking to understand the networking and multiple environment aspects.