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
-
Can someone explain the benefit of serverless and how it isn’t just a buzzword used to overcomplicate the deployment process? I’m the head of IT for 2 companies and I’ll never get rid of our scalable solutions in favour of server less. I code, push to a branch, and it gets pulled on the server with any other commands I want. I’m in control of every environment and have complete version control in the cloud via the repositories.
-
Oh dear, here we go again.
Serverless isn't just some useless buzzword, it's an incredibly useful bit of of kit that enables you to massively scale up and down very quickly. In a previous job where we had unpredictable, incredibly spiky demands for batch payment processing, it was invaluable - we could instantly scale to thousands of running lambdas for a couple of minutes, then back down to nothing again as soon as that processing stopped. If it started again 5 minutes later, we could scale right back up, if it barely did anything for months on end, then we paid zilch.
Is it useful for everything? No,of course not. If you're running a service with constant or predictable workload then better to go with Kubernetes or ECS in most cases. (Though I'd still use Fargate personally to avoid having to maintain the underlying nodes.)
But damn, it's not useless just because it's new and you're not used to it. Skill up - moving with the times is required in this industry. -
matt-jd10304y@redbastien true serverless like p2p has a lot of use cases that I'm sure you can imagine, the other kind I guess some form of scalability
Related Rants
FUUUUUUUUCK SERVERLESSS
We just got forced to make new project in serverless
Current issues:
- Local development sucks a cock
- Everything feels different (in wrong way)
- Deployments are shitty
- Lack of tools
Give me back my EC2
rant
serverless
aws
js