Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
Wonder if theres any tl;dr somewhere about the serverless framework, I really don't get what its for.
-
kunashe19877y@JoshBent there’s a channel on YouTube called “foobar” - the host does a good job of explaining serverless.
tldr; if you need to run a computation daily, rather than maintain a server to do this - turn the server into a docker image and connect to an API endpoint.
Now you just call the API every time you need to run the computation. You no longer need to keep the server running 24/7. -
kunashe19877y@koin yes - you're right.
I'd say serverless means dynamic micro service without the responsibility for scaling.
The cloud provider will automatically adjust CPU/memory depending on demand. In addition, the micro service lives only for the duration of the request & is destroyed after.
When another request is made the micro service is recreated. So you only ever pay for the time it takes to perform the request. -
Huuugo25207yServerless is essentially a kind of PaaS (platform as a service). You need to use the specific APIs and you get features like scaling, zero-config etc. It has limitations, too, tho. E.g. Running time limits, state management (you basically don't use file system)
Related Rants
Who the fuck decided that serverless computing is a good name for something that isn't serverless?
rant
fake hype
buzzword
serverless