DEV Community

Discussion on: Lambda Extension with Golang

Collapse
 
benbpyle profile image
Benjamen Pyle

So it's very much like another Microservice but it gives you access into the Lambda runtime in order to handle events in the lifecycle. Such as Init, Invoke and Shutdown. The caching sample could easily just be the API call, but what I like about doing it this way is that I've wrapped all of the API processing logic up so that the Lambda doesn't need to know about the implementation. And you don't end up writing that same code over and over in different Lambdas. And if you have different languages, you could have 2 or 3 versions of it.

Datadog uses it heavily for observability and it's really nice. You could also implement some logging as well.

It's 100% not a "use all the time" thing, but it's just another tool in your toolbox that you can use if you need it.